mirror of
https://git.kittycat.homes/zoe/wisdom.git
synced 2024-08-15 03:26:36 +00:00
55 lines
929 B
CSS
55 lines
929 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
size: 100%;
|
|
height: 100%;
|
|
}
|
|
div {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 90%;
|
|
margin-left: 8%;
|
|
margin-right: 8%;
|
|
}
|
|
.wisdom {
|
|
display: flex;
|
|
font-size: 3.6em;
|
|
text-align: center;
|
|
}
|
|
|
|
a {font-family: "Prata", serif;
|
|
color: floralwhite;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
filter: drop-shadow(0 0 0.5rem floralwhite);
|
|
}
|
|
body {
|
|
background-color: #080808;
|
|
}
|
|
footer * {
|
|
overflow: visible;
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
}
|
|
footer {
|
|
border-top-style: solid;
|
|
border-top-width: 2%;
|
|
border-color: floralwhite;
|
|
background-color: #080808;
|
|
position: sticky;
|
|
overflow: visible;
|
|
left: 0;
|
|
display: flex;
|
|
height: 8%;
|
|
bottom: 0;
|
|
width: 100%;
|
|
font-size: 1.5em;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|