frontend-dali/source/style/main.css

66 lines
815 B
CSS
Raw Permalink Normal View History

html
{
2024-09-30 20:20:28 +02:00
background-color: hsl(0, 0%, 12.5%);
color: hsl(0, 0%, 100%);
2024-09-12 00:02:12 +02:00
font-family: sans-serif;
}
header
{
2024-09-30 20:20:28 +02:00
background-color: hsl(0, 0%, 25%);
2024-09-21 10:56:55 +02:00
/*
border-bottom: 2px solid #888;
padding-bottom: 16px;
2024-09-21 10:56:55 +02:00
*/
margin-bottom: 16px;
}
nav > ul
{
list-style-type: none;
margin: 0;
padding: 0;
}
nav > ul > li
{
display: inline-block;
2024-09-19 13:34:24 +02:00
margin: 8px;
padding: 8px;
}
a
{
2024-09-21 10:56:55 +02:00
padding: 8px;
text-decoration: none;
2024-09-21 10:56:55 +02:00
color: hsl(0, 0%, 87.5%);
}
a:hover
{
color: hsl(0, 0%, 100%);
2024-09-21 10:56:55 +02:00
border-bottom: 2px solid hsl(0, 0%, 100%);
transition: 1s ease color;
}
2024-09-30 20:20:28 +02:00
input,select
{
padding: 4px;
}
button
{
padding: 8px;
text-transform: uppercase;
cursor: pointer;
}
input,select,button
{
background-color: hsl(0, 0%, 0%);
color: hsl(0, 0%, 100%);
border: 1px solid hsl(0, 0%, 75%);
margin: 4px;
border-radius: 2px;
}