-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (72 loc) · 1.13 KB
/
style.css
File metadata and controls
73 lines (72 loc) · 1.13 KB
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
:root {
--textColor: #262626;
--primaryColor: #4aad52;
background: #f7f0f0;
border-top: 8px solid var(--primaryColor);
}
body {
color: var(--textColor);
margin: 6vh auto;
max-width: 50em;
font-family: "Noto Sans", sans-serif;
}
h1 {
color: var(--textColor);
font-family: "Poppins", sans-serif;
font-size: 4rem;
margin: 20px;
}
a {
text-decoration: none;
color: var(--primaryColor);
}
a:visited {
color: var(--primaryColor);
}
a:hover {
color: var(--textColor);
}
#headshot {
height: 250px;
border-radius: 50%;
border: 3px ridge var(--textColor);
margin: 0 auto;
}
header {
text-align: center;
}
.blurb {
margin: 0 auto;
font-size: 1.15em;
max-width: 30em;
}
nav {
display: flex;
margin: 50px auto;
max-width: 27.5em;
text-align: center;
font-size: 1.3em;
justify-content: space-between;
}
@media screen and (max-width: 700px) {
body {
margin: 5vh 20px;
}
h1 {
font-size: 2.3rem;
margin: auto 0;
}
#headshot {
height: 200px;
}
nav {
max-width: 15em;
justify-content: space-between;
}
nav i {
font-size: 1.75em;
}
nav span {
display: none;
}
}