58 lines
793 B
CSS
58 lines
793 B
CSS
|
html {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
h1, h2 {
|
||
|
color: white;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
color: white;
|
||
|
text-align: center;
|
||
|
}
|
||
|
nav a {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
padding-left: 1rem;
|
||
|
padding-right: 1rem;
|
||
|
padding-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
nav a img {
|
||
|
width: 60px;
|
||
|
height: 60px;
|
||
|
}
|
||
|
nav a:hover img {
|
||
|
width: 75px;
|
||
|
height: 75px;
|
||
|
transition: 0.1s ease;
|
||
|
}
|
||
|
|
||
|
nav a h3 {
|
||
|
margin: 0px;
|
||
|
}
|
||
|
|
||
|
#notif {
|
||
|
position: fixed;
|
||
|
margin: 1rem;
|
||
|
padding: 0.5rem;
|
||
|
right: 0px;
|
||
|
bottom: 0px;
|
||
|
background-color: orange;
|
||
|
text-align: center;
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
#notif a {
|
||
|
text-decoration: none;
|
||
|
color: black;
|
||
|
margin-right: 1rem;
|
||
|
}
|
||
|
|
||
|
#notif-close {
|
||
|
width: 45px;
|
||
|
float: right;
|
||
|
}
|