-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (43 loc) · 825 Bytes
/
style.css
File metadata and controls
51 lines (43 loc) · 825 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
body {
font-family: "Fira Mono", serif;
color: #555555;
background-color: #f8f9fc;
/* background-color: #3a3a3a;
color: rgb(0, 255, 34); */
margin: 3em;
text-align: left;
}
::selection {
background-color: #3a3a3a;
color: rgb(0, 255, 34);
}
/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media (min-width: 631px) {
p,
ul {
font-size: 1.5em;
}
h1 {
font-size: 4em;
}
h2 {
font-size: 2em;
}
}
/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media (max-width: 630px) {
p,
ul {
font-size: 0.8em;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 1em;
}
}
.footer {
margin-top: 6em;
font-size: 1.1em;
}