SHOW:
|
|
- or go back to the newest paste.
1 | /* LOOKING MACRO CSS */ | |
2 | ||
3 | /* Styles how the link looks like for looking interactions */ | |
4 | /* This is added to the span you use around the link to use the looking macro */ | |
5 | #story .look a { | |
6 | color: #FFBC50 !important; | |
7 | font-weight: 600; | |
8 | } | |
9 | ||
10 | /* Styles how the link looks like when hovering over it */ | |
11 | /* This is added to the span you use around the link to use the looking macro */ | |
12 | #story .look a:hover { | |
13 | color: #CF8713 !important; | |
14 | text-decoration: none; | |
15 | } | |
16 | ||
17 | /* Styles how link looks when clicked on. */ | |
18 | .looked { | |
19 | color: #FFBC50; | |
20 | } |