65 lines
815 B
CSS
65 lines
815 B
CSS
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;
|
|
}
|
|
|
|
a
|
|
{
|
|
padding: 8px;
|
|
text-decoration: none;
|
|
color: hsl(0, 0%, 87.5%);
|
|
}
|
|
|
|
a:hover
|
|
{
|
|
color: hsl(0, 0%, 100%);
|
|
border-bottom: 2px solid hsl(0, 0%, 100%);
|
|
transition: 1s ease color;
|
|
}
|
|
|
|
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;
|
|
}
|