質問編集履歴

3

画像を追加

2018/01/21 11:20

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -165,3 +165,11 @@
165
165
 
166
166
 
167
167
  ```
168
+
169
+
170
+
171
+ ### 追伸2
172
+
173
+
174
+
175
+ ![イメージ説明](f4663161cb5b310791060ace85c45775.png)

2

わかりやすく。

2018/01/21 11:20

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -150,6 +150,8 @@
150
150
 
151
151
 
152
152
 
153
+ #############追加##################3
154
+
153
155
 
154
156
 
155
157
  atom-text-editor[mini] {

1

adding code

2018/01/21 02:14

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -25,3 +25,141 @@
25
25
  プログラミング以前のエディタの質問で恐縮ですが、情報を探しています。
26
26
 
27
27
  よろしくお願いします。
28
+
29
+
30
+
31
+ # 追伸
32
+
33
+
34
+
35
+ ```
36
+
37
+ /*
38
+
39
+ * Your Stylesheet
40
+
41
+ *
42
+
43
+ * This stylesheet is loaded when Atom starts up and is reloaded automatically
44
+
45
+ * when it is changed and saved.
46
+
47
+ *
48
+
49
+ * Add your own CSS or Less to fully customize Atom.
50
+
51
+ * If you are unfamiliar with Less, you can read more about it here:
52
+
53
+ * http://lesscss.org
54
+
55
+ */
56
+
57
+
58
+
59
+ .editor {
60
+
61
+ font-weight: bold;
62
+
63
+ letter-spacing: 0.5px;
64
+
65
+ }
66
+
67
+
68
+
69
+ atom-text-editor.editor {
70
+
71
+ .syntax--comment {
72
+
73
+ font-style: normal;
74
+
75
+ }
76
+
77
+ }
78
+
79
+
80
+
81
+
82
+
83
+ /*
84
+
85
+ * Examples
86
+
87
+ * (To see them, uncomment and save)
88
+
89
+ */
90
+
91
+
92
+
93
+ // style the background color of the tree view
94
+
95
+ .tree-view {
96
+
97
+ // background-color: whitesmoke;
98
+
99
+ }
100
+
101
+
102
+
103
+ // style the background and foreground colors on the atom-text-editor-element itself
104
+
105
+ atom-text-editor {
106
+
107
+ // color: white;
108
+
109
+ // background-color: hsl(180, 24%, 12%);
110
+
111
+ }
112
+
113
+
114
+
115
+ // To style other content in the text editor's shadow DOM, use the ::shadow expression
116
+
117
+ atom-text-editor.editor .cursor {
118
+
119
+ // border-color: red;
120
+
121
+ }
122
+
123
+
124
+
125
+ atom-text-editor.editor {
126
+
127
+ .gutter .cursor-line {
128
+
129
+ background-color: fade(cyan, 14%);
130
+
131
+ }
132
+
133
+ .highlights {
134
+
135
+ .selection .region {
136
+
137
+ background: fade(cyan, 30%);
138
+
139
+ }
140
+
141
+ .find-result .region {
142
+
143
+ border: 1px solid fade(cyan, 80%);
144
+
145
+ }
146
+
147
+ }
148
+
149
+ }
150
+
151
+
152
+
153
+
154
+
155
+ atom-text-editor[mini] {
156
+
157
+ color : rgb(66, 66, 66); //色は適宜変更
158
+
159
+ }
160
+
161
+
162
+
163
+
164
+
165
+ ```