-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
69 lines (64 loc) · 979 Bytes
/
main.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
body {
background: #10564F;
color: #F3F4EF;
width: 40%;
margin: 100px auto;
}
nav.navbar {
padding: 0;
}
h1 {
font-family: 'Plaster', cursive;
font-size: 100px;
}
a, a:hover {
text-decoration: none;
color: inherit;
}
main {
margin-top: 100px;
}
p {
font-family: 'Sen', Arial, Helvetica, sans-serif;
font-size: 40px;
margin: 100px 0;
}
.email {
font-weight: bold;
text-decoration: underline;
}
.email:hover {
text-decoration: none;
}
.footer {
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
}
.footer p {
font-size: 20px;
}
.fa {
font-size: 30px;
height: 1em;
margin-right: 30px;
}
@media (max-width: 1500px) {
body {
width: 60%;
}
p {
font-size: 30px;
margin: 60px 0;
}
}
@media (max-width: 600px) {
body {
width: 80%;
}
p {
font-size: 20px;
margin: 40px 0;
}
}