tren/static/css/global.scss
ngn 4df8b90dae
All checks were successful
Build and publish the docker image / build (push) Successful in 58s
initial commit
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 09:58:58 +03:00

85 lines
1.1 KiB
SCSS

: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;
}
}