-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (40 loc) · 718 Bytes
/
style.css
File metadata and controls
42 lines (40 loc) · 718 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
.container {
display: flex;
flex-direction: column;
flex: 1;
position: relative;
min-height: 110vh;
min-width: 100vw;
border: 7px tomato dotted;
}
.header {
align-self: center;
font-family:Chalkduster, fantasy;
color:tomato;
font-size:40px;
text-align: center;
}
body {
background-color:rgba(245,224,184,255);
}
.content {
display: flex;
justify-content: center;
align-self:flex-end;
margin-top: auto;
padding-bottom: 75px;
}
nav a {
text-decoration: none;
color: darkolivegreen;
padding-left: 60px;
}
nav a:hover {
color: azure;
}
@keyframes fadeIn {
from { opacity: 0; }
}
.animate-flicker {
animation: fadeIn 3s;
}