-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (71 loc) · 1018 Bytes
/
style.css
File metadata and controls
85 lines (71 loc) · 1018 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
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
font-family: 'PT Sans', sans-serif;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
color: #2b2d2f;
overflow-x: hidden;
}
.navbar {
margin: 0 0;
font-weight: 400;
font-size: 1.2em;
}
.bodydiv {
width: 90%;
}
h1,
h2,
h3,
h4 {
margin-bottom: 2%;
}
img {
width: 30vw;
margin-top: 15px;
margin-bottom: 25px;
box-shadow: 3px 3px 4px gray;
}
p,
ul,
ol {
font-weight: 400;
font-size: 1.3em;
}
ul {
display: flex;
flex-direction: column;
justify-content: start;
list-style-type: none;
width: 60vw;
}
li {
margin-bottom: 25px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
p.first {
margin-top: 2%;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
color: coral;
}
@media (max-width: 750px) {
body {
flex-direction: column;
}
li {
display: flex;
flex-direction: column;
}
img {
width: 75vw;
}
}