initial commit
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:
ngn
2025-04-05 09:58:58 +03:00
commit 4df8b90dae
26 changed files with 1530 additions and 0 deletions

84
static/css/global.scss Normal file
View 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;
}
}

10
static/css/index.scss Normal file
View File

@ -0,0 +1,10 @@
.about {
display: flex;
flex-direction: column;
margin-bottom: 10px;
gap: 10px;
h1 span {
color: var(--red-1);
}
}

View File

@ -0,0 +1,29 @@
.result {
margin-top: 15px;
margin-bottom: 8px;
}
table {
border-collapse: collapse;
width: 100%;
th {
background: var(--red-1);
border: solid 1px var(--red-2);
padding: 8px;
}
td {
background: none;
border: solid 1px var(--dark-3);
padding: 8px;
}
td i {
font-size: 12px;
}
tr:nth-child(even) {
background-color: var(--dark-2);
}
}