40 lines
545 B
CSS
40 lines
545 B
CSS
html {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #191919;
|
|
color: white;
|
|
font-family: monospace;
|
|
margin-bottom: 100px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: lightgrey;
|
|
}
|
|
a:hover {
|
|
color: #191919;
|
|
background-color: white;
|
|
}
|
|
|
|
input {
|
|
border: 1px solid black;
|
|
background-color: white;
|
|
}
|
|
|
|
footer {
|
|
background-color: black;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: calc(100vw - 20px);
|
|
padding: 10px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.base_path {
|
|
color: grey;
|
|
}
|