website/app/static/css/global.css
ngn 9a72d3f95d
Some checks failed
Build the docker image for the frontend application / build (push) Failing after 20s
dump nerdfonts from the website to use locally
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-07 05:58:46 +03:00

117 lines
2.0 KiB
CSS

/*
* animations.css: stuff like the cursor animation
* webfont.css: webfont dumped from https://www.nerdfonts.com/assets/css/webfont.css
* font.css: the main font (Ubuntu)
*/
@import "./animations.css";
@import "./nerdfonts.css";
@import "./font.css";
:root {
--yellow: #d3b910;
--cyan: #0dd2e8;
--green: #06e00a;
--pinkish: #d506e0;
--red: #e8180d;
--blue: #2036f9;
--white-1: #ffffff;
--white-2: #bfbfbf;
--white-3: #5f5f5f;
--white-4: #0f0f0f;
--black-1: #000000;
--black-2: #050505;
--black-3: #111111;
--black-4: #3a3b3c;
--size-1: 8px;
--size-2: 16px;
--size-3: 18px;
--size-4: 20px;
--size-5: 24px;
--size-6: 30px;
--box-shadow-1: rgba(20, 20, 20, 0.19) 0px 10px 20px, rgba(30, 30, 30, 0.23) 0px 6px 6px;
--box-shadow-2: rgba(0, 0, 0, 0.35) 0px 30px 60px -12px inset,
rgba(20, 20, 20, 0.3) 0px 18px 36px -18px inset;
--text-shadow: 3px 2px 8px rgba(50, 50, 50, 0.8);
--background: linear-gradient(rgba(11, 11, 11, 0.808), rgba(1, 1, 1, 0.96)),
url("/assets/banner.png");
--profile-size: 220px;
}
* {
padding: 0;
margin: 0;
}
html {
box-sizing: border-box;
}
body {
background: var(--black-1);
font-family: "Ubuntu", sans-serif;
overflow-x: hidden;
height: 100vh;
width: 100vw;
}
::selection {
background: rgba(100, 100, 100, 0.5);
}
::-webkit-scrollbar {
border-radius: 5px;
width: 1px;
}
::-webkit-scrollbar-track {
border-radius: 10px;
background: var(--black-1);
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: var(--black-2);
}
a {
font-weight: 900;
color: var(--white-1);
text-decoration: none;
cursor: pointer;
}
a:hover {
text-decoration: underline;
text-shadow: var(--text-shadow);
}
i .nf {
font-weight: 900;
}
ul {
list-style: inside;
margin: 12px 0 12px 0;
}
li + li {
margin-top: 10px;
}
input {
background: var(--black-3);
border: none;
outline: none;
font-size: var(--size-4);
padding: 10px;
border: solid 1px var(--black-4);
color: var(--white-1);
}