-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (68 loc) · 1.08 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
html {
font-family: "Source Code Pro";
font-weight: 300;
font-size: 16px;
background-color: #a7ada0;
}
/* ------ HEADER ------- */
header {
color: #f0dcb8;
display: flex;
font-family: "DM Mono", monospace;
font-weight: 200;
background-color: #1b4259;
width: 100%;
justify-content: space-between;
}
header p {
font-size: 2.5rem;
padding-left: 2rem;
}
#navlist {
display: inline-flex;
justify-content: space-around;
float: right;
align-content: center;
}
#navlist li {
padding: 1.25rem;
padding-top: 1.75rem;
list-style: none;
font-size: 1.5rem;
}
.links {
text-decoration: none;
color: #f3f1dd;
}
.links:visited {
color: #f3f1dd;
}
/* ------ MAIN ------- */
main {
color: #1b4259;
text-align: center;
}
.intro {
padding-top: 10rem;
font-size: 1.5rem;
}
.intro h2 {
font-size: 2.5rem;
}
.intro span {
color: aliceblue;
}
.intro img {
width: 50rem;
height: auto;
border-radius: 2rem;
}
/* ------ABOUT------- */
.about {
font-size: 1.5rem;
text-align: left;
}
h1 .about {
padding-bottom: 2rem;
font-size: 2.5rem;
}