clause agent mode "make it look like papermod"
Some checks failed
CSS Code Linting / Lint CSS (push) Has been cancelled
JS Code Linting / Lint JS (push) Has been cancelled
PHP Code Linting / Parallel lint (push) Has been cancelled
PHP Code Linting / PHPCS check (push) Has been cancelled

This commit is contained in:
gribse 2025-07-26 16:24:01 +02:00
parent 1c59bd66ea
commit 582e4491c0
91 changed files with 2139 additions and 202 deletions

0
sass/base/_base.scss Normal file → Executable file
View file

10
sass/base/elements/_body.scss Normal file → Executable file
View file

@ -1,3 +1,11 @@
body {
background: $color__background-body; // Fallback for when there is no custom background color defined.
background: var(--color-bg-primary);
color: var(--color-text-primary);
font-family: $font__main;
font-size: $font__size-base;
line-height: $font__line-height-body;
font-weight: $font__weight-normal;
transition: var(--transition-default);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

0
sass/base/elements/_buttons.scss Normal file → Executable file
View file

0
sass/base/elements/_fields.scss Normal file → Executable file
View file

0
sass/base/elements/_hr.scss Normal file → Executable file
View file

24
sass/base/elements/_links.scss Normal file → Executable file
View file

@ -1,22 +1,38 @@
a {
color: $color__link;
color: var(--color-link);
text-decoration: none;
transition: var(--transition-fast);
border-bottom: 1px solid transparent;
&:visited {
color: $color__link-visited;
color: var(--color-link-visited);
}
&:hover,
&:focus,
&:active {
color: $color__link-hover;
color: var(--color-link-hover);
border-bottom-color: var(--color-link-hover);
}
&:focus {
outline: thin dotted;
outline: 2px solid var(--color-link);
outline-offset: 2px;
border-radius: 2px;
}
&:hover,
&:active {
outline: 0;
}
// Remove underline for navigation links
.main-navigation &,
.site-branding & {
border-bottom: none;
&:hover {
border-bottom: none;
}
}
}

0
sass/base/elements/_lists.scss Normal file → Executable file
View file

0
sass/base/elements/_media.scss Normal file → Executable file
View file

0
sass/base/elements/_tables.scss Normal file → Executable file
View file

0
sass/base/typography/_copy.scss Normal file → Executable file
View file

36
sass/base/typography/_headings.scss Normal file → Executable file
View file

@ -5,4 +5,40 @@ h4,
h5,
h6 {
clear: both;
font-family: $font__heading;
font-weight: $font__weight-semibold;
line-height: $font__line-height-heading;
color: var(--color-text-primary);
margin-top: 0;
margin-bottom: 1rem;
}
h1 {
font-size: $font__size-h1;
font-weight: $font__weight-bold;
margin-bottom: 1.5rem;
}
h2 {
font-size: $font__size-h2;
margin-top: 2rem;
margin-bottom: 1rem;
}
h3 {
font-size: $font__size-h3;
margin-top: 1.5rem;
}
h4 {
font-size: $font__size-h4;
}
h5 {
font-size: $font__size-h5;
}
h6 {
font-size: $font__size-h6;
font-weight: $font__weight-medium;
}

0
sass/base/typography/_typography.scss Normal file → Executable file
View file