135 lines
2.0 KiB
CSS
135 lines
2.0 KiB
CSS
body{
|
|
background-color: beige;
|
|
}
|
|
|
|
#title{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.burger_button{
|
|
position: absolute;
|
|
top: .75rem;
|
|
right: 1rem;
|
|
display: none;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
width: 30px;
|
|
height: 21px;
|
|
}
|
|
|
|
.burger_button .bar{
|
|
height: 3px;
|
|
width: 100%;
|
|
background-color: black;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
nav ul{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
list-style-type: none;
|
|
font-family: 'Zen Kurenaido', sans-serif;
|
|
padding-left: 0;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:link
|
|
{
|
|
text-decoration: none;
|
|
}
|
|
|
|
nav ul li{
|
|
transition: 1s;
|
|
border-right: 1px solid #bbb;
|
|
background-color: rgb(124, 124, 145);
|
|
padding: 1rem;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
}
|
|
|
|
#sec_switch img{
|
|
height : 1rem;
|
|
width : auto;
|
|
}
|
|
|
|
nav ul li:last-child {
|
|
border-right: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/*nav ul li:hover{
|
|
background-color: rgb(24, 88, 207);
|
|
transition: background-color 1s;
|
|
}*/
|
|
|
|
footer{
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: pink;
|
|
}
|
|
|
|
footer #feedback #form{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
footer #feedback #form #send{
|
|
justify-self: flex-start;
|
|
}
|
|
|
|
footer #feedback #form #txtfeedback{
|
|
resize: none;
|
|
}
|
|
|
|
footer #rightfoot ul{
|
|
font-size: 1rem;
|
|
display : flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
@media screen and (max-width:1000px){
|
|
#title{
|
|
justify-content: left;
|
|
}
|
|
|
|
.burger_button{
|
|
display: flex
|
|
}
|
|
|
|
.navbar_links{
|
|
width: 100%;
|
|
}
|
|
|
|
nav{
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.navbar_links ul{
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.navbar_links li{
|
|
text-align: center;
|
|
}
|
|
|
|
.navbar_links li a{
|
|
padding: .5rem 1rem;
|
|
}
|
|
|
|
.navbar_links .active{
|
|
display: flex;
|
|
}
|
|
|
|
.hide{
|
|
display: none;
|
|
c
|
|
}
|
|
} |