2024-10-01 21:33:14 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-10-01 21:33:14 +02:00
|
|
|
header
|
|
|
|
{
|
2024-09-30 20:20:28 +02:00
|
|
|
background-color: hsl(0, 0%, 25%);
|
2024-09-21 10:56:55 +02:00
|
|
|
/*
|
2024-09-19 10:17:43 +02:00
|
|
|
border-bottom: 2px solid #888;
|
|
|
|
padding-bottom: 16px;
|
2024-09-21 10:56:55 +02:00
|
|
|
*/
|
2024-09-19 10:17:43 +02:00
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
2024-10-01 21:33:14 +02:00
|
|
|
nav > ul
|
|
|
|
{
|
2024-09-19 10:17:43 +02:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2024-10-01 21:33:14 +02:00
|
|
|
nav > ul > li
|
|
|
|
{
|
2024-09-19 10:17:43 +02:00
|
|
|
display: inline-block;
|
2024-09-19 13:34:24 +02:00
|
|
|
margin: 8px;
|
2024-09-19 10:17:43 +02:00
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
2024-10-01 21:33:14 +02:00
|
|
|
a
|
|
|
|
{
|
2024-09-21 10:56:55 +02:00
|
|
|
padding: 8px;
|
2024-09-19 10:17:43 +02:00
|
|
|
text-decoration: none;
|
2024-09-21 10:56:55 +02:00
|
|
|
color: hsl(0, 0%, 87.5%);
|
|
|
|
}
|
|
|
|
|
2024-10-01 21:33:14 +02:00
|
|
|
a:hover
|
|
|
|
{
|
2024-09-19 10:17:43 +02:00
|
|
|
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-19 10:17:43 +02:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|