149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
-
-
-
+
|
transition: filter 0.25s ease;
}
main header:hover h1 {
color: ◊color-bodytext;
/* transition: color 0.25s ease; */
}
/* Links. Generally, we want them colored that weird springy green, underlines
only when hovered, thanks.
I read somewhere years ago that you should specify styling for links in the
/* I read somewhere years ago that you should specify styling for links in the
following order: Link, Visited, Hover, Active.
→ Remember the mnemonic: Lord Vader Has Arrived.
Not sure if that's relevant advice any more but I still follow it. It can't hurt. */
a:link, a:visited { /* [L]ord [V]ader… */
color: ◊color-link;
|
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
-
+
|
a.rel-bookmark::after {
content: '\f894';
margin-left: 4px;
font-style: normal;
color: #809102;
}
a.rel-bookmark.note-permlink::after {
content: '-'; /* NB: this is not a hyphen! It is a U+002D glyph, the Unicode “minus sign” */
content: '\f897';
margin-left: 4px;
}
a.rel-bookmark:hover::after {
color: #aaba16;
}
|