initial commit
All checks were successful
Build and publish the docker image / build (push) Successful in 58s
All checks were successful
Build and publish the docker image / build (push) Successful in 58s
Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
84
static/css/global.scss
Normal file
84
static/css/global.scss
Normal file
@ -0,0 +1,84 @@
|
||||
:root {
|
||||
--dark-1: #000;
|
||||
--dark-2: #111;
|
||||
--dark-3: #333;
|
||||
|
||||
--red-1: #bf1e2e;
|
||||
--red-2: #75131d;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: rgba(100, 100, 100, 0.5);
|
||||
}
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
background: var(--dark-1);
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
main {
|
||||
width: min-content;
|
||||
}
|
||||
|
||||
nav {
|
||||
padding: 12px 10px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
background: var(--red-1);
|
||||
font-size: 20px;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
|
||||
margin-bottom: 20px;
|
||||
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: 1000;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
p {
|
||||
color: white;
|
||||
font-weight: 100;
|
||||
}
|
||||
}
|
||||
|
||||
.search {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
|
||||
input, select, button {
|
||||
outline: none;
|
||||
font-size: 15px;
|
||||
padding: 4px;
|
||||
background: var(--dark-2);
|
||||
border: solid 1px gray;
|
||||
}
|
||||
|
||||
select, button {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user