-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (89 loc) · 1.45 KB
/
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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*, *::before, *::after {
box-sizing: border-box;
margin:0px;
padding:0px;
border:solid 0px blue;
}
.container {
padding: 10% 15% 5% 15%;
text-align: left;
width: 80vw;
}
.avatar {
width: 10rem;
border-radius: 50%;
margin-bottom: 2.5rem;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Josefin Slab', serif;
line-height: 80%;
margin-top: 2.5rem;
margin-bottom: 0.75rem;
}
h1 {
font-size: 10rem;
font-weight: 100;
}
h3 {
font-size: 3rem;
margin-bottom: 5rem;
font-weight: 100;
}
h4 {
font-size: 1.5rem;
font-weight: 700;
}
.welcome-section h4 {
margin-bottom: 1.5rem;
}
p {
font-family: 'Open Sans', sans-serif;
font-weight: 500;
font-size: 1rem;
line-height: 130%;
margin-bottom: 1rem;
}
hr {
height: 5px;
background-color: darkorange;
width: 100px;
margin-top: 6rem;
}
a {
font-weight: 700;
color: black;
text-decoration: wavy underline black 1px;
}
a:hover {
color: darkorange;
text-decoration: wavy underline darkorange 1px;
}
.about-section__item {
margin: 2rem 0;
}
li {
display: inline;
list-style-type: disc;
font-size: 1.5rem;
margin-right: 0.25rem;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 90vw;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 90vw;
}
}
@media (max-width: 540px) {
.container {
width: 90vw;
}
h1 {
font-size: 6rem;
}
}