51 lines
904 B
CSS
51 lines
904 B
CSS
html {
|
|
background-color: #fdf5e6;
|
|
height: 100%;
|
|
}
|
|
body {
|
|
min-height: 100%;
|
|
}
|
|
.navbar {
|
|
background-color: #dcb495;
|
|
display: inline-flex;
|
|
height: 8vw;
|
|
}
|
|
#navbar {
|
|
position: fixed;
|
|
width: 100%;
|
|
transition: top 0.3s;
|
|
opacity: .9;
|
|
border-bottom: 1px solid #bf9c81;
|
|
}
|
|
.auth_button {
|
|
color: #ffffff;
|
|
font-size: 1.5vw;
|
|
transition: color 0.5s ease-in, border-bottom 0.5s ease-in;
|
|
}
|
|
.auth_button:hover {
|
|
color: #694a2d;
|
|
border-bottom: 3px solid #f3c79e;
|
|
text-decoration: none;
|
|
}
|
|
.footer {
|
|
background-color: #171717;
|
|
height: 15vw;
|
|
}
|
|
.footer_block {
|
|
height: 100%;
|
|
width: 90%;
|
|
margin-left: 5%;
|
|
display: flex;
|
|
align-content: center;
|
|
align-items: center;
|
|
}
|
|
.footer_logo, .nav_logo {
|
|
width: 7vw;
|
|
height: 6vw;
|
|
}
|
|
.footer_rights {
|
|
color: #ffffff;
|
|
font-size: 1.5vw;
|
|
width: 85%;
|
|
text-align: center;
|
|
} |