76 lines
1.1 KiB
CSS
76 lines
1.1 KiB
CSS
|
*{
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
text-decoration: none;
|
||
|
list-style: none;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body{
|
||
|
background-color: beige;
|
||
|
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
nav{
|
||
|
background-color:rgba(210, 105, 30, 0.411);
|
||
|
height: 80px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
label.cim{
|
||
|
color: cadetblue;
|
||
|
font-size: 40px;
|
||
|
line-height: 80px;
|
||
|
padding: 0 70px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
nav ul{
|
||
|
float: right;
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
|
||
|
nav ul li{
|
||
|
display: inline-block;
|
||
|
line-height: 80px;
|
||
|
margin: 0 5px;
|
||
|
}
|
||
|
|
||
|
nav ul li a{
|
||
|
color:#5f9ea0;
|
||
|
font-size: 20px;
|
||
|
text-transform: uppercase;
|
||
|
padding: 4px 10px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
a:hover{
|
||
|
background: #1b393a;
|
||
|
transition: .4s;
|
||
|
}
|
||
|
|
||
|
.checkbtn{
|
||
|
font-size: 30px;
|
||
|
color: azure;
|
||
|
float: right;
|
||
|
line-height: 80px;
|
||
|
margin-right: 40px;
|
||
|
cursor: pointer;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#check{
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 952px){
|
||
|
label.cim{
|
||
|
font-size: 30px;
|
||
|
padding-left: 50px;
|
||
|
}
|
||
|
nav ul li a{
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
}
|
||
|
|