-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (50 loc) · 1018 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
58
59
60
body {
font-size: 40px;
text-align: center;
color: #101010;
background: #d0e6ff;
font-family: Verdana, Tahoma, sans-serif;
line-height: 1.5;
}
/*** other body styles ***/
body.yellow {
background: #f3d104;
}
body.red {
background: #d61111;
font-size: 60px;
}
div {
padding-top: 1em;
}
/*** spans ***/
.mono {
font-size: 45px;
font-family: Monaco, monospace;
letter-spacing: 2px;
}
/* used for spacing */
.small {
font-size: 15px;
letter-spacing: 0;
}
.underline {
margin: 0 3px;
text-decoration: underline #101010 solid 4px !important;
-webkit-text-decoration-line: underline !important;
-webkit-text-decoration-color: #101010 !important;
-webkit-text-decoration-style: solid !important;
-webkit-text-decoration-thickness: 4px !important;
}
span.red {
margin: 0 3px;
text-decoration: underline #ff0000 solid 4px;
-webkit-text-decoration: underline #ff0000 solid 4px !important;
}
.linkback {
padding-top: 30px;
font-size: 16px;
}
img {
padding: 0 20px;
}