-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
49 lines (37 loc) · 853 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap');
body {
font-family: 'Open Sans', sans-serif;
width: 50%;
margin: auto;
}
@media only screen and (max-device-width: 720px) {
body {
width: 95%;
}
}
img {
width: 100%;
}
code {
white-space: pre-wrap; /* Since CSS 2.1 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
h1 {
text-transform: uppercase;
font-size: 1.7em;
}
h2 {
font-size: 1.3em;
}
strong {
font-size: 1em;
}
.emphasis {
font-style: italic;
text-align: right;
font-size: 0.8em;
margin: 10px 0 30px 0;
}