58 lines
992 B
CSS
58 lines
992 B
CSS
body{
|
|
background-color: beige;
|
|
}
|
|
|
|
#title{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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;
|
|
} |