dontmeetme/styles/today/main.css
Frédéric Egenscheviller f7535525a6 change
2021-10-29 13:38:54 +02:00

64 lines
1.0 KiB
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;
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;
}