32 lines
438 B
CSS
32 lines
438 B
CSS
body {
|
|
background-color: black;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
}
|
|
|
|
#footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
padding-bottom: 16px;
|
|
width: 100%;
|
|
background-color: black;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
#footer * {
|
|
padding-right: 8px;
|
|
padding-left: 8px;
|
|
}
|
|
|
|
* {
|
|
color: #ea8aff;
|
|
|
|
font-family: "Courier Prime", serif;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
font-size: 1em;
|
|
} |