File tree 4 files changed +43
-4
lines changed
4 files changed +43
-4
lines changed Original file line number Diff line number Diff line change 1
1
< p > Copyleft (ɔ) from 2015-2016 Vim Taiwan CC BY-NC 2.5 TW.</ p >
2
+ < img src ="images/status_bar.png " class ="status_bar ">
2
3
</ div >
3
4
</ body >
4
5
</ html >
Original file line number Diff line number Diff line change 1
1
$font-size : 18px ;
2
2
$title-color : #70b950 ;
3
+ $link-color : #80a0ff ;
4
+ $normal-color : #e8e8d3 ;
5
+ $linenum-color : #605958 ;
3
6
$pound : " data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='40px' width='13px'><text x='0' y='17' fill='%2370b950' font-size='18' font-weight='600'>%23</text></svg>" ;
4
7
$pound-offset : " data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='40px' width='28px'><text x='0' y='17' fill='%2370b950' font-size='18' font-weight='600'>%23</text></svg>" ;
Original file line number Diff line number Diff line change 8
8
text-align : right ;
9
9
counter-increment : ln;
10
10
content : counter (ln );
11
- color : #605958 ;
11
+ color : $linenum-color ;
12
12
background-color : #151515 ;
13
13
font-weight : 400 ;
14
14
}
15
15
16
+ ::selection {
17
+ background : $normal-color ;
18
+ color : #000 ;
19
+ }
20
+ ::-moz-selection {
21
+ background : $normal-color ;
22
+ color : #000 ;
23
+ }
24
+
16
25
body {
17
26
counter-reset : ln;
18
27
margin : 0 ;
19
28
padding : 0 ;
20
29
font-family : monospace ;
21
- color : #e8e8d3 ;
30
+ color : $normal-color ;
22
31
background-color : #151515 ;
23
32
font-size : $font-size ;
24
33
}
25
34
26
35
#main {
27
36
padding : 1rem 0 ;
28
37
font-family : monospace ;
29
- color : #e8e8d3 ;
38
+ color : $normal-color ;
30
39
background-color : #151515 ;
31
40
32
41
h1 ::before {
@@ -59,6 +68,16 @@ body {
59
68
display : block ;
60
69
@include lineNum-style ;
61
70
}
71
+
72
+ & ::selection {
73
+ background : $title-color ;
74
+ color : #000 ;
75
+ }
76
+
77
+ & ::-moz-selection {
78
+ background : $title-color ;
79
+ color : #000 ;
80
+ }
62
81
}
63
82
64
83
p {
@@ -106,11 +125,27 @@ body {
106
125
}
107
126
108
127
a {
109
- color : #80a0ff ;
128
+ color : $link-color ;
110
129
text-decoration : underline ;
111
130
112
131
& :hover {
113
132
color : $title-color ;
114
133
}
134
+
135
+ & ::selection {
136
+ background : $link-color ;
137
+ color : #000 ;
138
+ }
139
+
140
+ & ::-moz-selection {
141
+ background : $link-color ;
142
+ color : #000 ;
143
+ }
144
+ }
145
+
146
+ .status_bar {
147
+ position : fixed ;
148
+ bottom : 0 ;
149
+ width : 100% ;
115
150
}
116
151
}
You can’t perform that action at this time.
0 commit comments