ConceptPortal-public/rsconcept/frontend/src/styling/setup.css

138 lines
2.0 KiB
CSS
Raw Normal View History

/**
* Module: Basic styling setup.
*/
@import './constants.css';
@import './layers.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-02-22 11:35:27 +03:00
html,
body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow-x: hidden;
}
html {
hanging-punctuation: first last;
color-scheme: dark light;
}
[data-color-scheme='dark'] {
color-scheme: dark;
}
[data-color-scheme='light'] {
color-scheme: light;
}
/* Default scroll behavior */
@media (prefers-reduced-motion: no-preference) {
:has(:target) {
scroll-behavior: smooth;
scroll-padding-top: 3rem;
}
}
:root {
2024-01-16 13:47:29 +03:00
font-size: 16px;
font-family: var(--font-main);
color: var(--cl-fg-100);
border-color: var(--cl-bg-40);
background-color: var(--cl-bg-100);
&.dark {
color: var(--cd-fg-100);
border-color: var(--cd-bg-40);
background-color: var(--cd-bg-100);
}
}
2024-05-07 16:20:10 +03:00
@media only screen and (max-width: 639px) {
2024-01-16 13:47:29 +03:00
:root {
font-size: 12px;
}
}
:focus {
outline-width: 2px;
outline-style: solid;
outline-color: transparent;
.dark & {
outline-color: transparent;
}
}
::selection {
background: var(--cl-prim-bg-60);
.dark & {
background: var(--cd-prim-bg-60);
}
tr :hover& {
background: var(--cl-red-bg-100);
.dark & {
background: var(--cd-red-bg-100);
}
}
}
::placeholder {
color: var(--cl-fg-60);
.dark & {
color: var(--cd-fg-60);
}
}
/* Wrapping headers */
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
}
/* Limit text lines and setup wrapping */
p,
li {
max-width: 90ch;
text-wrap: pretty;
}
2024-03-26 22:55:53 +03:00
div:not(.dense) > p {
2024-02-22 16:25:11 +03:00
@apply [&:not(:last-child)]:mb-2;
}
@layer components {
h1 {
@apply text-lg font-semibold text-center;
}
h2 {
2024-02-22 15:07:05 +03:00
@apply [&:not(:first-child)]:mt-2 font-semibold text-center;
}
b {
@apply font-semibold;
}
2024-05-07 17:58:36 +03:00
li::marker {
content: ' ';
}
.border {
@apply rounded;
}
.shadow-border {
@apply shadow-sm shadow-[var(--cl-bg-40)] dark:shadow-[var(--cd-bg-40)];
}
}