mirror of
https://github.com/Ahwxorg/Binternet.git
synced 2026-03-11 08:54:37 +00:00
89 lines
1.2 KiB
CSS
89 lines
1.2 KiB
CSS
::root {
|
|
--inputColor: black;
|
|
}
|
|
|
|
body {
|
|
background-color: #2a2b2b;
|
|
color: white;
|
|
font-family: verdana, arial, sans-serif;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
span {
|
|
color: #f218ee;
|
|
}
|
|
|
|
#bodyHeader {
|
|
margin-top: 10vh;
|
|
text-align: center;
|
|
}
|
|
|
|
.bodyText {
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100vw;
|
|
height: 10vh;
|
|
color: white;
|
|
background-color: #1f2120;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
#footerText {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.sep:before {
|
|
content: "\f004 ";
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #12e8b9;
|
|
}
|
|
|
|
#inputWrapper {
|
|
align-items: center;
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
input, button {
|
|
outline: none;
|
|
color: white;
|
|
background-color: #1f2120;
|
|
border: 1px solid #1f2120;
|
|
height: 4vh;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
input {
|
|
outline: none;
|
|
color: white;
|
|
background-color: #1f2120;
|
|
border: 1px solid #1f2120;
|
|
width: 35vw;
|
|
height: 4vh;
|
|
margin: 10px;
|
|
}
|
|
|
|
img {
|
|
max-width: 25vw;
|
|
max-height: 25vw;
|
|
height: auto;
|
|
width: auto;
|
|
border-radius: 10px;
|
|
box-shadow: 5px 5px 5px black;
|
|
}
|