-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
57 lines (48 loc) · 979 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
html {
background-color: #eee;
}
body {
font-size: 18px;
color: #444;
font-family: Bahnschrift, DIN, "DIN Alternate", "Roboto Condensed", sans-serif;
font-weight: 300;
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
padding: 0 10px;
justify-content: initial;
min-height: 0;
}
a {
display: inline-block;
text-decoration: none;
color: white;
background-color: black;
font-stretch: semi-condensed;
text-shadow: none;
border-style: solid;
border-width: 1px;
border-color: #212121;
transition: all 0.5s;
padding-left: 5px;
padding-right: 5px;
margin-bottom: 3px;
}
a:hover {
color: black;
background-color: white;
transform: scale(1.03);
box-shadow: 0px 3px 20px #000000;
}
.list {
min-height: 40px;
margin-top: 10px;
}
#marked {
border-color: #a00;
background-color: #a00;
}
#marked:hover {
border-color: black;
}