-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
36 lines (32 loc) · 965 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
.wrapper {
color: #cccccc;
font-family: "Source Code Pro", monospace;
font-size: 18pt;
line-height: 1em;
text-align: left;
}
.wrapper .banner {
height: 3em;
display: block;
margin: 0 auto;
}
/* Using styles from https://adventofcode.com/static/style.css?16 */
.privboard-row {
white-space: pre;
}
.privboard-row .star-count {
color: #ffff66;
}
.privboard-name {
vertical-align: text-bottom;
}
.privboard-days > span { display: inline-block; color: #333333; }
.privboard-days > span.passed { color: #009900; }
.privboard-days > a { display: inline-block; }
.privboard-star-locked { visibility: hidden; }
.privboard-star-unlocked { color: #333333; }
.privboard-star-firstonly { color: #666699; }
.privboard-star-both { color: #ffff66; }
.privboard-delbtn { opacity:.33; }
.privboard-row:hover .privboard-delbtn { opacity:1; }