website/src/main.css

67 lines
883 B
CSS
Raw Normal View History

2024-07-20 02:22:49 -05:00
@font-face {
font-family: 'merriweather';
src: url(/res/merriweather-regular.ttf);
}
2024-07-20 06:15:37 -05:00
2024-07-20 02:22:49 -05:00
body {
font-family: merriweather;
2024-07-20 06:15:37 -05:00
background-color: #141013;
2024-07-20 02:22:49 -05:00
height: 100%;
padding: 5px;
2024-07-20 06:15:37 -05:00
line-height: 1.75em;
2024-07-20 02:22:49 -05:00
}
main {
2024-07-20 06:15:37 -05:00
border-radius: 15px;
padding: 15px;
background-color: #ffeedd;
2024-07-20 02:22:49 -05:00
margin: auto;
max-width: 750px;
}
.bg {
width: 100%;
height: 100%;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: -9999;
}
2024-07-20 06:15:37 -05:00
table {
margin-left: auto;
margin-right: auto;
}
table, th, td {
padding: 5px;
border: 3px solid black;
border-style: solid;
border-collapse: collapse;
/* text-align: center; */
align-content: center;
}
a {
color: #df3e23;
font-style: italic;
text-decoration: none;
}
a:visited {
color: #df3e23;
font-style: italic;
text-decoration: none;
}
h1:before {
content: "> ";
}
h2:before {
content: "=> ";
}