tildechan/css/main.css

56 lines
856 B
CSS

:root {
--bg-color: #b3e5fc;
--fg-color: #82b3c9;
--text-color: #000000;
--border-color: #000000;
}
body {
font-family: monospace;
background-color: var(--bg-color);
}
div.main {
}
div.box {
border: 1px solid var(--border-color);
background-color: var(--fg-color);
padding: 0 5px;
}
div.error {
border: 1px solid #ef5350;
background-color: #ff867c;
padding: 5px;
}
/* make links look better */
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
/* stuff for input's like the login and post forms */
form.input-form {
}
/* not sure if this is the best way to select this but... */
form.input-form table tbody tr td:first-child {
border: 1px solid var(--border-color);
background-color: var(--fg-color);
padding: 0 5px;
}