Elizabeth Hunt
f163a24279
All checks were successful
continuous-integration/drone/push Build is passing
61 lines
884 B
CSS
61 lines
884 B
CSS
@import "/static/css/colors.css";
|
|
@import "/static/css/form.css";
|
|
@import "/static/css/table.css";
|
|
@import "/static/css/chat.css";
|
|
|
|
@font-face {
|
|
font-family: 'GeistMono';
|
|
src: url('/static/fonts/GeistMono-Medium.ttf') format('truetype');
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
font-family: GeistMono;
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background-color);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
border-top: 1px solid var(--text-color);
|
|
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1600px;
|
|
margin: auto;
|
|
background-color: var(--container-bg);
|
|
padding: 1rem;
|
|
}
|
|
|
|
|
|
a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.info {
|
|
margin-bottom: 1rem;
|
|
max-width: 600px;
|
|
|
|
transition: opacity 0.3s;
|
|
}
|
|
|
|
.info:hover {
|
|
opacity: 0.8;
|
|
}
|