website/app/static/global.css

70 lines
1.3 KiB
CSS
Raw Normal View History

2025-01-04 19:59:44 +03:00
@import "./animations.css";
2023-08-20 00:57:35 +03:00
@import "./font.css";
2023-04-16 20:12:24 +03:00
:root {
2025-01-04 19:59:44 +03:00
--white: #ffffff;
--yellow: #d3b910;
--cyan: #0dd2e8;
--green: #06e00a;
--pinkish: #d506e0;
--red: #e8180d;
--blue: #0536fc;
--dark-one: #000000;
2023-08-20 00:57:35 +03:00
--dark-two: #050505;
--dark-three: #121212;
--dark-four: #101010;
2023-04-16 20:12:24 +03:00
--dark-fife: #3a3b3c;
2025-01-04 19:59:44 +03:00
--dark-six: #c0c0c0;
--radius: 8px;
/*
old shadow animation
2023-04-16 20:12:24 +03:00
--def-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
*/
2023-08-20 00:57:35 +03:00
--text-shadow: 0px 10px 20px rgba(90, 90, 90, 0.8);
--box-shadow: rgba(20, 20, 20, 0.19) 0px 10px 20px, rgba(30, 30, 30, 0.23) 0px 6px 6px;
2024-10-06 17:30:25 +03:00
--border-color: #2f2f2f;
2023-04-16 20:12:24 +03:00
}
* {
padding: 0;
margin: 0;
}
body {
2023-08-20 00:57:35 +03:00
background: var(--dark-one);
2023-04-16 20:12:24 +03:00
font-family: "Ubuntu", sans-serif;
overflow-x: hidden;
2024-06-08 14:54:51 +03:00
height: 100vh;
width: 100vw;
2023-04-16 20:12:24 +03:00
}
2023-08-21 08:23:11 +03:00
::selection {
2023-11-12 17:43:23 +03:00
background: rgba(100, 100, 100, 0.5);
text-decoration: underline;
2023-08-21 08:23:11 +03:00
}
2023-04-16 20:12:24 +03:00
::-webkit-scrollbar {
border-radius: 5px;
width: 1px;
2023-04-16 20:12:24 +03:00
}
::-webkit-scrollbar-track {
border-radius: 10px;
background: #181818;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #282828;
}
2025-01-04 19:59:44 +03:00
.glitch {
2023-04-16 20:12:24 +03:00
animation-name: colorAnimation;
animation-iteration-count: infinite;
animation-duration: 10s;
}