85 lines
No EOL
1.7 KiB
CSS
85 lines
No EOL
1.7 KiB
CSS
/*
|
|
jet-search
|
|
Copyright (C) 2024 VM-Experiments
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
|
|
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-rows: 75px 1fr;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
margin: 10px;
|
|
}
|
|
|
|
label {
|
|
color: white;
|
|
}
|
|
|
|
form {
|
|
margin-top: 24px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.link {
|
|
color: rgb(127, 127, 127);
|
|
display: inline;
|
|
font-size: 16px
|
|
}
|
|
|
|
.description {
|
|
color: rgb(192, 192, 192);
|
|
font-size: 12px
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
margin-top: 240px;
|
|
text-decoration: none;
|
|
font-size: 20px
|
|
}
|
|
|
|
input {
|
|
border: 0;
|
|
border-radius: 5px;
|
|
padding: 3px;
|
|
background-color: gray;
|
|
color: white;
|
|
}
|
|
|
|
#top {
|
|
background-color: black;
|
|
grid-area: 1 / 1 / 2 / 2;
|
|
padding-left: 36px;
|
|
}
|
|
|
|
#content {
|
|
padding: 10px;
|
|
background-color: rgb(63, 63, 63);
|
|
grid-area: 2 / 1 / 3 / 2;
|
|
padding-left: 48px;
|
|
} |