64 lines
879 B
SCSS
64 lines
879 B
SCSS
/* src/styles.scss */
|
|
@use "./styles/theme";
|
|
@use "./styles/patterns";
|
|
@use "./styles/ui";
|
|
|
|
/* Reset / Base */
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: var(--font-family-sans);
|
|
background-color: var(--color-bg);
|
|
color: var(--color-text);
|
|
line-height: 1.5;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
margin: 0;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
font-family: var(--font-family-display);
|
|
}
|
|
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: var(--space-4);
|
|
}
|
|
|
|
a {
|
|
color: var(--color-brand);
|
|
text-decoration: none;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
/* Utilities */
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 var(--space-4);
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
.mb-4 {
|
|
margin-bottom: var(--space-4);
|
|
}
|
|
.mt-4 {
|
|
margin-top: var(--space-4);
|
|
}
|