35 lines
890 B
SCSS
35 lines
890 B
SCSS
@use 'mixins' as *;
|
|
|
|
:root {
|
|
--transition-time: 200ms;
|
|
--transition-time-long: 350ms;
|
|
--line-width: 4px;
|
|
--line-height: 1.125rem;
|
|
--accent-color: #ff6b6b;
|
|
--sun-color: #f7f78c;
|
|
--very-light-text-color: #ffffff;
|
|
--background: #ffffff;
|
|
--normal-text-color: #31343f;
|
|
--card-color: #ffffff;
|
|
--blurred-card-color: transparent;
|
|
--blur-radius: 12px;
|
|
--special-text-color: var(--accent-color);
|
|
--inset-shadow: inset 0 0 4px 1px rgba(0, 0, 0, 0.05), inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
--border-radius: 0.85rem;
|
|
|
|
--large-margin: 4.6rem;
|
|
--normal-margin: 2rem;
|
|
--small-margin: 1rem;
|
|
--shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.2);
|
|
--icon-size: 2.8rem;
|
|
--large-icon-size: 3.75rem;
|
|
--body-width: min(80%, 60rem);
|
|
}
|
|
|
|
@include on-small-screen {
|
|
:root {
|
|
--body-width: 90%;
|
|
--large-margin: 2.8rem;
|
|
--normal-margin: 2rem;
|
|
}
|
|
}
|