質問編集履歴
3
画像を追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -81,4 +81,8 @@
|
|
81
81
|
}
|
82
82
|
|
83
83
|
|
84
|
-
```
|
84
|
+
```
|
85
|
+
|
86
|
+
### 追伸2
|
87
|
+
|
88
|
+

|
2
わかりやすく。
title
CHANGED
File without changes
|
body
CHANGED
@@ -74,6 +74,7 @@
|
|
74
74
|
}
|
75
75
|
}
|
76
76
|
|
77
|
+
#############追加##################3
|
77
78
|
|
78
79
|
atom-text-editor[mini] {
|
79
80
|
color : rgb(66, 66, 66); //色は適宜変更
|
1
adding code
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,4 +11,73 @@
|
|
11
11
|
|
12
12
|
意外と`ローマ字入力`と`英文字入力`のどっちを今しているのか分からなく、不便でして。。。
|
13
13
|
プログラミング以前のエディタの質問で恐縮ですが、情報を探しています。
|
14
|
-
よろしくお願いします。
|
14
|
+
よろしくお願いします。
|
15
|
+
|
16
|
+
# 追伸
|
17
|
+
|
18
|
+
```
|
19
|
+
/*
|
20
|
+
* Your Stylesheet
|
21
|
+
*
|
22
|
+
* This stylesheet is loaded when Atom starts up and is reloaded automatically
|
23
|
+
* when it is changed and saved.
|
24
|
+
*
|
25
|
+
* Add your own CSS or Less to fully customize Atom.
|
26
|
+
* If you are unfamiliar with Less, you can read more about it here:
|
27
|
+
* http://lesscss.org
|
28
|
+
*/
|
29
|
+
|
30
|
+
.editor {
|
31
|
+
font-weight: bold;
|
32
|
+
letter-spacing: 0.5px;
|
33
|
+
}
|
34
|
+
|
35
|
+
atom-text-editor.editor {
|
36
|
+
.syntax--comment {
|
37
|
+
font-style: normal;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
|
42
|
+
/*
|
43
|
+
* Examples
|
44
|
+
* (To see them, uncomment and save)
|
45
|
+
*/
|
46
|
+
|
47
|
+
// style the background color of the tree view
|
48
|
+
.tree-view {
|
49
|
+
// background-color: whitesmoke;
|
50
|
+
}
|
51
|
+
|
52
|
+
// style the background and foreground colors on the atom-text-editor-element itself
|
53
|
+
atom-text-editor {
|
54
|
+
// color: white;
|
55
|
+
// background-color: hsl(180, 24%, 12%);
|
56
|
+
}
|
57
|
+
|
58
|
+
// To style other content in the text editor's shadow DOM, use the ::shadow expression
|
59
|
+
atom-text-editor.editor .cursor {
|
60
|
+
// border-color: red;
|
61
|
+
}
|
62
|
+
|
63
|
+
atom-text-editor.editor {
|
64
|
+
.gutter .cursor-line {
|
65
|
+
background-color: fade(cyan, 14%);
|
66
|
+
}
|
67
|
+
.highlights {
|
68
|
+
.selection .region {
|
69
|
+
background: fade(cyan, 30%);
|
70
|
+
}
|
71
|
+
.find-result .region {
|
72
|
+
border: 1px solid fade(cyan, 80%);
|
73
|
+
}
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
atom-text-editor[mini] {
|
79
|
+
color : rgb(66, 66, 66); //色は適宜変更
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
```
|