-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
39 lines (34 loc) · 762 Bytes
/
styles.css
File metadata and controls
39 lines (34 loc) · 762 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
@keyframes fall {
from {top: 0; opacity:0}
}
body {
background-color: #b7b7b7;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
a {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: darkgoldenrod;
text-decoration: none;
}
.button {
padding: 10px;
background-color: darkgoldenrod;
color: black;
border-radius: 10px
}
#main-content {
padding: 10px;
position: absolute;
top: 60px;
animation-name: fall;
animation-duration: 2s;
}
#footer {
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
background-color: #2d2d2d;
color: goldenrod;
padding: 25px;
}