frontend-dali/source/style/main.css

61 lines
908 B
CSS
Raw Normal View History

:root
{
--hue: 150;
}
html
{
2025-10-17 00:10:28 +02:00
background-color: hsl(var(--hue), 0%, 12.5%);
color: hsl(var(--hue), 0%, 100%);
2024-09-12 00:02:12 +02:00
font-family: sans-serif;
}
header
{
2024-09-21 10:56:55 +02:00
/*
2025-10-17 00:10:28 +02:00
background-color: hsl(0, 0%, 25%);
border-bottom: 2px solid #888;
padding-bottom: 16px;
2024-09-21 10:56:55 +02:00
*/
margin-bottom: 16px;
}
a
{
text-decoration: none;
color: hsl(var(--hue), 0%, 87.5%);
}
a:hover
{
color: hsl(var(--hue), 0%, 100%);
border-bottom: 2px solid hsl(0, 0%, 100%);
transition: 1s ease color;
}
2024-09-30 20:20:28 +02:00
button
{
padding: 8px 12px;
2024-09-30 20:20:28 +02:00
text-transform: uppercase;
cursor: pointer;
2025-10-17 00:10:28 +02:00
background-color: hsl(var(--hue), 0%, 6.125%);
border: 1px solid hsl(var(--hue), 0%, 6.125%);
color: hsl(0, 0%, 87.5%);
margin: 4px;
border-radius: 4px;
2024-09-30 20:20:28 +02:00
}
2025-10-17 00:10:28 +02:00
input,select,textarea
2024-09-30 20:20:28 +02:00
{
2025-10-17 00:10:28 +02:00
background-color: hsl(0, 0%, 25%);
border: 1px solid hsl(0, 0%, 25%);
2024-09-30 20:20:28 +02:00
color: hsl(0, 0%, 100%);
padding: 4px;
2024-09-30 20:20:28 +02:00
margin: 4px;
2025-10-17 00:10:28 +02:00
border-radius: 4px;
/*
font-family: monospace;
*/
2024-09-30 20:20:28 +02:00
}