## Tasks - [192](https://vikunja.ramsch.sx/tasks/192) ## Zugehörige MRs - [datamodel](misc/zeitbild-datamodel#1) - [backend](misc/zeitbild-backend#1) Reviewed-on: misc/zeitbild-frontend-dali#1 Co-authored-by: Fenris Wolf <fenris@folksprak.org> Co-committed-by: Fenris Wolf <fenris@folksprak.org>
82 lines
997 B
CSS
82 lines
997 B
CSS
:root
|
|
{
|
|
--hue: 150;
|
|
}
|
|
|
|
html
|
|
{
|
|
background-color: hsl(0, 0%, 12.5%);
|
|
color: hsl(0, 0%, 100%);
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
header
|
|
{
|
|
background-color: hsl(0, 0%, 25%);
|
|
/*
|
|
border-bottom: 2px solid #888;
|
|
padding-bottom: 16px;
|
|
*/
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
nav > ul
|
|
{
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
nav > ul > li
|
|
{
|
|
display: inline-block;
|
|
margin: 8px;
|
|
padding: 8px;
|
|
}
|
|
|
|
nav a
|
|
{
|
|
padding: 8px;
|
|
text-decoration: none;
|
|
color: hsl(var(--hue), 0%, 87.5%);
|
|
}
|
|
|
|
nav a:hover
|
|
{
|
|
color: hsl(var(--hue), 0%, 100%);
|
|
border-bottom: 2px solid hsl(0, 0%, 100%);
|
|
transition: 1s ease color;
|
|
}
|
|
|
|
a
|
|
{
|
|
text-decoration: none;
|
|
color: hsl(var(--hue), 50%, 50%);
|
|
}
|
|
|
|
a:hover
|
|
{
|
|
color: hsl(var(--hue), 50%, 75%);
|
|
}
|
|
|
|
input,select,textarea
|
|
{
|
|
padding: 4px;
|
|
}
|
|
|
|
button
|
|
{
|
|
padding: 8px;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input,select,textarea,button
|
|
{
|
|
background-color: hsl(0, 0%, 0%);
|
|
color: hsl(0, 0%, 100%);
|
|
border: 1px solid hsl(0, 0%, 75%);
|
|
margin: 4px;
|
|
border-radius: 2px;
|
|
}
|