2024-09-05 02:36:11 -05:00
|
|
|
<style>
|
2024-07-20 02:22:49 -05:00
|
|
|
@font-face {
|
|
|
|
font-family: 'merriweather';
|
2024-07-31 18:11:40 -05:00
|
|
|
src: url(/res/merriweather-regular.woff2);
|
2024-07-20 02:22:49 -05:00
|
|
|
}
|
|
|
|
|
2024-07-22 04:38:58 -05:00
|
|
|
@font-face {
|
|
|
|
font-family: 'cascadia';
|
|
|
|
src: url(/res/cascadiacode.woff2);
|
|
|
|
}
|
|
|
|
|
2024-07-20 02:22:49 -05:00
|
|
|
body {
|
|
|
|
font-family: merriweather;
|
2024-07-22 04:38:58 -05:00
|
|
|
background-image: url("/res/grey.png");
|
|
|
|
background-repeat: repeat;
|
2024-09-04 22:13:10 -05:00
|
|
|
padding: 20px 10px 20px;
|
2024-07-20 06:15:37 -05:00
|
|
|
line-height: 1.75em;
|
2024-09-05 02:30:43 -05:00
|
|
|
height: 100%;
|
2024-09-04 22:13:10 -05:00
|
|
|
max-width: 40em;
|
2024-09-05 02:30:43 -05:00
|
|
|
display: flex;
|
|
|
|
margin: auto;
|
2024-07-22 05:50:53 -05:00
|
|
|
}
|
|
|
|
|
2024-09-05 02:30:43 -05:00
|
|
|
main {
|
2024-07-20 06:15:37 -05:00
|
|
|
border-radius: 15px;
|
|
|
|
padding: 15px;
|
|
|
|
background-color: #ffeedd;
|
2024-07-22 05:50:53 -05:00
|
|
|
margin: 2px;
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
|
2024-07-22 04:38:58 -05:00
|
|
|
code {
|
|
|
|
font-family: cascadia;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-09-05 02:30:43 -05:00
|
|
|
a:hover:before {
|
2024-07-22 05:50:53 -05:00
|
|
|
content: "[";
|
|
|
|
font-style: normal;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2024-09-05 02:30:43 -05:00
|
|
|
a:hover:after {
|
2024-07-22 05:50:53 -05:00
|
|
|
content: "]";
|
|
|
|
font-style: normal;
|
|
|
|
color: black;
|
2024-07-20 06:15:37 -05:00
|
|
|
}
|
2024-09-05 02:36:11 -05:00
|
|
|
</style>
|