62 lines
No EOL
1.1 KiB
CSS
62 lines
No EOL
1.1 KiB
CSS
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: #282a36;
|
|
background-color: #f8f8f2;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
#mainpage {
|
|
font-size: 1rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
.things {
|
|
font-size: 1.1rem;
|
|
color: #282a36;
|
|
background-color: #ffffff;
|
|
border: #bd93f9 solid 2pt;
|
|
margin: 0.5rem;
|
|
padding: 1rem;
|
|
}
|
|
h1, h2, h3 {
|
|
color: #ff79c6;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 4rem;
|
|
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
}
|
|
nav {
|
|
text-align: center;
|
|
font-size: 1.3rem;
|
|
font-weight: bold;
|
|
margin-bottom: 1rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
nav a {
|
|
text-decoration: none;
|
|
padding: 0.3rem;
|
|
border: 1pt solid;
|
|
margin: 0.3rem;
|
|
}
|
|
|
|
footer {
|
|
margin-top: auto;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
a:link, a:visited {
|
|
color: #6272a4;
|
|
|
|
}
|
|
a:hover, a:active {
|
|
color: #bd93f9;
|
|
} |