65 lines
1018 B
CSS
65 lines
1018 B
CSS
@font-face {
|
|
font-family: "Erbaum Book";
|
|
src: url("static/Erbaum-Book.ttf");
|
|
}
|
|
|
|
.themed {
|
|
color: #71ff55;
|
|
}
|
|
|
|
* {
|
|
font-family: "Erbaum Book", "Courier New", Courier, monospace;
|
|
color: white;
|
|
}
|
|
|
|
body {
|
|
background-color: black;
|
|
}
|
|
|
|
.header {
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
ol li {
|
|
list-style-position: inside;
|
|
}
|
|
#table {
|
|
line-height: 200%;
|
|
}
|
|
a:hover {
|
|
color: #71ff55;
|
|
}
|
|
a {
|
|
text-decoration: underline;
|
|
color: white;
|
|
transition: color 300ms;
|
|
}
|
|
|
|
table {
|
|
border: 1px white solid;
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
border: 1px white solid;
|
|
padding: 0.5rem;
|
|
}
|
|
tr:nth-child(even) {
|
|
background-color: rgba(100, 100, 100, 0.25);
|
|
}
|
|
footer {
|
|
padding: 5px 10px;
|
|
background: #9e9e9e;
|
|
background: linear-gradient(
|
|
0deg,
|
|
rgba(100, 100, 100, 1) 0%,
|
|
rgba(100, 100, 100, 0) 100%
|
|
);
|
|
position: fixed;
|
|
bottom: 0px;
|
|
width: 100svw;
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
}
|