Spaces:
Sleeping
Sleeping
File size: 2,259 Bytes
509af96 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
* {
--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;
} |