67 lines
773 B
CSS
67 lines
773 B
CSS
:root {
|
|
--font-size: 12px;
|
|
}
|
|
|
|
html {
|
|
font-size: var(--font-size);
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
div#admin-container {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
main > nav {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
main > section {
|
|
flex: 1;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
a {
|
|
color: #663300;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
color: #330000;
|
|
}
|
|
.small {
|
|
font: 10px verdana;
|
|
}
|
|
.highlight {
|
|
color: red;
|
|
}
|
|
.light {
|
|
color: #999999;
|
|
}
|
|
.title {
|
|
border: solid 1px black;
|
|
background-color: #eeeeee;
|
|
font-weight: bold;
|
|
padding: 5px;
|
|
margin: 3px;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
border: solid 1px black;
|
|
background-color: #eeeeee;
|
|
font-size: 0.8rem;
|
|
padding: 0.5rem;
|
|
}
|