website/public/app.css

99 lines
1.7 KiB
CSS
Raw Normal View History

2024-03-27 01:51:42 +01:00
p {
2024-03-28 18:30:52 +01:00
font-size: 16px;
2024-03-27 01:51:42 +01:00
}
2024-03-28 18:30:52 +01:00
h1,
2024-04-03 14:27:48 +02:00
h2,
h3 {
color: var(--text-light);
2024-03-28 18:30:52 +01:00
font-family: 'Roboto', sans-serif;
2024-03-27 01:51:42 +01:00
}
2024-04-03 16:18:30 +02:00
article>h2 {
2024-04-03 14:27:48 +02:00
font-size: 24px;
margin-top: 20px;
}
2024-04-03 16:18:30 +02:00
article>h3 {
2024-04-03 14:27:48 +02:00
font-size: 20px;
margin-top: 16px;
}
2024-04-03 16:18:30 +02:00
article>p>a,
article a {
color: var(--fill) !important;
}
2024-03-26 16:36:18 +01:00
:root {
2024-03-28 18:30:52 +01:00
--neutral-1000: #000000;
--neutral-800: #16161E;
--neutral-500: #252530;
--neutral-400: #2C2C3A;
--neutral-300: #414152;
2024-04-03 14:27:48 +02:00
--neutral-100: #D5D5D7;
2024-03-28 18:30:52 +01:00
--neutral-000: #F1F1F4;
2024-04-03 14:27:48 +02:00
--fill: #cb5a5a;
2024-03-26 16:36:18 +01:00
}
body {
2024-04-03 14:27:48 +02:00
--background-dark: var(--neutral-800);
--background: var(--neutral-000);
--background-light: var(--neutral-400);
--outline: var(--neutral-300);
--text: var(--neutral-800);
--text-light: black;
2024-03-26 16:36:18 +01:00
2024-03-28 18:30:52 +01:00
--border-radius-md: 20px;
--spacing-sm: 10px;
--spacing-md: 20px;
2024-03-27 01:51:42 +01:00
background-color: var(--layer100);
transition: background-color 0.1s;
2024-03-26 16:36:18 +01:00
color: var(--text);
2024-03-28 18:30:52 +01:00
font-family: 'Nunito Sans', sans-serif;
2024-04-03 14:27:48 +02:00
background-color: var(--neutral-000);
}
.dark body {
--background-dark: var(--neutral-800);
--background: var(--neutral-500);
--background-light: var(--neutral-400);
--background-gradient: linear-gradient(-30deg, var(--neutral-500) 0%, var(--neutral-400) 100%);
--outline: var(--neutral-300);
--text: var(--neutral-100);
--text-light: white;
background-color: var(--neutral-1000);
}
.dark .noise::before {
opacity: 1;
2024-03-26 16:36:18 +01:00
}
2024-03-27 01:51:42 +01:00
2024-03-28 18:30:52 +01:00
.noise::before {
2024-04-03 14:27:48 +02:00
opacity: 0.3;
2024-03-28 18:30:52 +01:00
content: "";
position: absolute;
height: 100%;
width: 100%;
background: url(/noise.png);
background-size: 200px;
pointer-events: none;
/* opacity: 0.3; */
}
2024-03-27 01:51:42 +01:00
img {
max-width: 100%;
height: auto;
}
2024-04-03 14:27:48 +02:00
video {
border-radius: 10px;
}
2024-03-27 01:51:42 +01:00
.center {
display: flex;
justify-content: center;
align-items: center;
}