static/style.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
body {
font-family: monospace ;
font-size: 13pt;
background: #000007 ;
color: #DDDDCE ;
display: grid;
justify-content: center;
}
main {
width: 800px ;
margin: auto ;
margin-top: 0;
grid-column-start: 2;
grid-row-start: 1;
grid-row-end: 3;
}
.outline {
width: auto;
max-width: 300px;
grid-column-start: 1;
grid-column-end: 1;
grid-row-start: 1;
grid-row-end: 2;
position: sticky;
top: 0;
}
.root_link{
color: #9c75dd;
}
img {
max-width: 100% ;
}
h1 {
color: #9c75dd;
text-align: center ;
text-transform: uppercase;
font-size: 13pt;
}
h2 {
color: #cd749c;
text-align: center ;
text-transform: uppercase;
font-size: 13pt;
}
h3 {
color: #d5a8e3;
text-align: center ;
text-transform: uppercase;
font-size: 13pt;
}
a:link {
color: #a9d1df;
text-decoration: none;
}
a:hover {
color: #849da2;
text-decoration: underline;
}
a:visited {
color: #849da2;
}
footer {
text-align: center ;
grid-column-start: 2;
grid-column-end: 2;
grid-row-start: 3;
}
ul li::marker {
content: '🜁 ';
}
th, td, table {
border: 1px solid;
border-collapse: collapse;
text-align: left;
padding: 3pt;
}
@media only screen and (max-width: 1100px) {
.outline {
display:none
}
}
|