63 lines
826 B
CSS
Executable file
63 lines
826 B
CSS
Executable file
html {
|
|
padding-top: 1em;
|
|
background-color: #282828;
|
|
}
|
|
|
|
body {
|
|
background-color: #3c3836;
|
|
border: 1px dashed black;
|
|
|
|
font-family: monospace;
|
|
color: #bcad8f;
|
|
margin: auto;
|
|
padding: 1em;
|
|
max-width: 800px;
|
|
}
|
|
|
|
table, td, th {
|
|
font-size: 110%;
|
|
border: 1px solid #a9ac26;
|
|
border-collapse: collapse;
|
|
padding: 5px;
|
|
background: beige;
|
|
}
|
|
|
|
th {
|
|
background: lightblue;
|
|
}
|
|
|
|
h2 {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
section {
|
|
padding: 10px;
|
|
margin-left: 2em;
|
|
}
|
|
|
|
h1>a {
|
|
color: black;
|
|
}
|
|
|
|
img {
|
|
margin: 1em;
|
|
max-width: 700px;
|
|
border: 1px solid #a9ac26;
|
|
}
|
|
|
|
label {
|
|
margin: 1em;
|
|
display: block;
|
|
}
|
|
|
|
code {
|
|
color: white;
|
|
background: black;
|
|
padding: 0 1px;
|
|
}
|
|
code::before, code::after {content: '`'}
|
|
|
|
iframe {
|
|
width: 100%;
|
|
border: none;
|
|
}
|