-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (62 loc) · 914 Bytes
/
style.css
File metadata and controls
78 lines (62 loc) · 914 Bytes
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body {
font-family: Arial, Helvetica, sans-serif;
}
h4 {
margin: 0;
}
div.info {
width: 100%;
margin-left: auto;
margin-right: auto;
}
div.selectors {
margin-top: 1%;
}
ol {
margin-top: 0;
margin-bottom: 0;
font-size: 2vh;
}
span {
font-size: 2.25vh;
}
div.col {
display: block;
text-align: left;
font-size: 2.2vh;
}
div.col2 {
display: block;
text-align: left;
vertical-align: top;
}
div.col2 + div.col2 {
display: none;
}
@media only screen and (min-width: 768px) {
/* For desktop: */
div.col {
display: inline-block;
text-align: left;
margin-right: 10%;
font-size: 1.2vw;
}
div.col2 {
display: inline-block;
width: 18%;
text-align: left;
margin-right: 2%;
margin-top: 1%;
margin-bottom: 1%;
vertical-align: top;
}
div.col2 + div.col2 {
display: inline-block;
}
ol {
font-size: 1vw;
}
span {
font-size: 1.25vw;
}
}