Spaces:
Sleeping
Sleeping
* { | |
--bg-color: #ff; | |
--glass-color: rgb(0, 0, 0, 0.8); | |
--searchbar-height: 3.0rem; | |
} | |
body { | |
background: var(--bg-color); | |
margin: 0; | |
font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
display: flex; | |
flex-direction: column; | |
justify-content: space-between; | |
height: 100vh; | |
} | |
nav { | |
height: 3em; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
padding: 0 1rem; | |
} | |
.links:hover { | |
text-decoration: underline; | |
} | |
.icon-container img { | |
height: 1.5em; | |
border-radius: 50%; | |
display: flex; | |
} | |
.center-container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
gap: 1rem; | |
} | |
.searchbar-container { | |
border: 1px solid var(--glass-color); | |
height: var(--searchbar-height); | |
width: 90%; | |
max-width: 600px; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
} | |
.searchbar-container img { | |
height: 1.5rem; | |
padding: 0 0.5rem; | |
} | |
.searchbar-container input { | |
height: 40px; | |
outline: none; | |
border: none; | |
margin-top: 5px; | |
width: 100%; | |
color: black; | |
background-color: white; | |
font-family: poppins, monospace; | |
} | |
.buttons-container { | |
display: flex; | |
gap: 1rem; | |
} | |
.buttons-container input { | |
height: var(--searchbar-height); | |
background-color: var(--hover-color); | |
color: white; | |
background-color: #9c9c9c; | |
font-family: poppins, monospace; | |
padding: 0 1rem; | |
font-weight: 300; | |
border: 1px solid transparent; | |
} | |
.buttons-container input:hover { | |
border: 1px solid var(--glass-color); | |
} | |
footer { | |
background-color: #ebeaea; | |
} | |
footer a { | |
color: black; | |
text-decoration: none; | |
opacity: 0.6; | |
font-weight: 300; | |
font-size: 0.8rem; | |
} | |
footer a:hover { | |
text-decoration: underline; | |
} | |
.footer-links div:not(:nth-of-type(2)) a { | |
padding: 0 0.5rem; | |
} | |
footer img { | |
height: 0.7rem; | |
} | |
.footer-links { | |
display: flex; | |
flex-wrap: wrap; | |
gap: 1rem; | |
justify-content: space-evenly; | |
padding: 1rem; | |
} | |
form { | |
padding-top: 16; | |
width: 700; | |
display: flex; | |
} |