feat: Restore BS icons, separate styles to modules

This commit is contained in:
daudix-UFO
2024-01-13 17:15:18 +03:00
parent 75f18e625e
commit 4addfec36e
22 changed files with 2482 additions and 385 deletions

35
sass/_statements.scss Normal file
View File

@ -0,0 +1,35 @@
.statement-container {
margin: 1rem 0 1rem;
padding: 1rem 1rem 0.5rem 1rem;
border-radius: var(--rounded-corner);
box-shadow: var(--shadow);
* {
margin: 0;
}
p,
ul,
ol {
margin: 0.5rem 0 0.5rem;
}
.big {
font-size: 1.5rem;
}
&.archive {
background-color: var(--purple-bg);
color: var(--purple-fg);
}
&.disclaimer {
background-color: var(--red-bg);
color: var(--red-fg);
}
&.trigger {
background-color: var(--yellow-bg);
color: var(--yellow-fg);
}
}