add font and acknowledgements
This commit is contained in:
parent
a4a79d964e
commit
c426c8aa2a
@ -54,3 +54,6 @@ once you are able to navigate to the forum, you can log in as the administrator
|
|||||||
|
|
||||||
# icons
|
# icons
|
||||||
the icons in the `icons/` folder are by [Gabriele Malaspina](https://www.figma.com/community/file/1136337054881623512/iconcino-v2-0-0-free-icons-cc0-1-0-license)
|
the icons in the `icons/` folder are by [Gabriele Malaspina](https://www.figma.com/community/file/1136337054881623512/iconcino-v2-0-0-free-icons-cc0-1-0-license)
|
||||||
|
|
||||||
|
# credits & acknowledgements
|
||||||
|
see [THIRDPARTY.md](./THIRDPARTY.md)
|
||||||
|
33
THIRDPARTY.md
Normal file
33
THIRDPARTY.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# Acknowledgements
|
||||||
|
|
||||||
|
## Lapis
|
||||||
|
|
||||||
|
URL: https://leafo.net/lapis/
|
||||||
|
Copyright: `(c) 2023 Leaf Corcoran`
|
||||||
|
License: MIT
|
||||||
|
Repo: https://github.com/leafo/lapis
|
||||||
|
|
||||||
|
## ChicagoFLF
|
||||||
|
|
||||||
|
Affected files: [`fonts/ChicagoFLF.woff2`](./fonts/ChicagoFLF.woff2)
|
||||||
|
No canonical URL that I could find.
|
||||||
|
Obtained from: https://usemodify.com/fonts/chicago/
|
||||||
|
License: Public Domain
|
||||||
|
Designers: Susan Kare, Robin Casady
|
||||||
|
|
||||||
|
## Cadman
|
||||||
|
|
||||||
|
Affected files: [`fonts/Cadman_Bold.woff2`](./fonts/Cadman_Bold.woff2) [`fonts/Cadman_BoldItalic.woff2`](./fonts/Cadman_BoldItalic.woff2) [`fonts/Cadman_Italic.woff2`](./fonts/Cadman_Italic.woff2) [`fonts/Cadman_Roman.woff2`](./fonts/Cadman_Roman.woff2)
|
||||||
|
URL: https://localfonts.eu/shop/cyrillic-script/serbian/serbian-cyrillic-sans-serif/cadman/
|
||||||
|
Copyright: `© 2017-2020 by Paul James Miller. All rights reserved.`
|
||||||
|
License: SIL Open Font License 1.1
|
||||||
|
Designers: Paul James Miller
|
||||||
|
|
||||||
|
## ICONCINO
|
||||||
|
|
||||||
|
Affected files: [`svg-icons/error.etlua`](./svg-icons/error.etlua) [`svg-icons/info.etlua`](./svg-icons/info.etlua) [`svg-icons/lock.etlua`](./svg-icons/lock.etlua) [`svg-icons/sticky.etlua`](./svg-icons/sticky.etlua) [`svg-icons/warn.etlua`](./svg-icons/warn.etlua)
|
||||||
|
URL: https://www.figma.com/community/file/1136337054881623512/iconcino-v2-0-0-free-icons-cc0-1-0-license
|
||||||
|
Copyright: Gabriele Malaspina
|
||||||
|
Designers: Gabriele Malaspina
|
||||||
|
License: CC0 1.0/CC BY 4.0
|
||||||
|
CC BY 4.0 compliance: Modified to indicate the URL. Modified size.
|
@ -1,8 +1,41 @@
|
|||||||
/* src: */
|
/* src: */
|
||||||
|
@font-face {
|
||||||
|
font-family: "body-text";
|
||||||
|
src: url("/static/fonts/DINish[slnt,wdth,wght].woff2") format("woff2");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "site-title";
|
||||||
|
src: url("/static/fonts/ChicagoFLF.woff2");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cadman";
|
||||||
|
src: url("/static/fonts/Cadman_Roman.woff2");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cadman";
|
||||||
|
src: url("/static/fonts/Cadman_Bold.woff2");
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cadman";
|
||||||
|
src: url("/static/fonts/Cadman_Italic.woff2");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cadman";
|
||||||
|
src: url("/static/fonts/Cadman_BoldItalic.woff2");
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
.currentpage, .pagebutton, input[type=file]::file-selector-button, button.warn, input[type=submit].warn, .linkbutton.warn, button.critical, input[type=submit].critical, .linkbutton.critical, button, input[type=submit], .linkbutton {
|
.currentpage, .pagebutton, input[type=file]::file-selector-button, button.warn, input[type=submit].warn, .linkbutton.warn, button.critical, input[type=submit].critical, .linkbutton.critical, button, input[type=submit], .linkbutton {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
color: black;
|
color: black;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9em;
|
||||||
|
font-family: "Cadman";
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
@ -11,7 +44,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: "Cadman";
|
||||||
margin: 20px 100px;
|
margin: 20px 100px;
|
||||||
background-color: rgb(173.5214173228, 183.6737007874, 161.0262992126);
|
background-color: rgb(173.5214173228, 183.6737007874, 161.0262992126);
|
||||||
}
|
}
|
||||||
@ -26,7 +59,7 @@ body {
|
|||||||
justify-content: end;
|
justify-content: end;
|
||||||
background-color: #c1ceb1;
|
background-color: #c1ceb1;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bottomnav {
|
#bottomnav {
|
||||||
@ -49,9 +82,9 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.site-title {
|
.site-title {
|
||||||
padding-right: 30px;
|
font-family: "site-title";
|
||||||
font-size: 1.5rem;
|
font-size: 3rem;
|
||||||
font-weight: bold;
|
margin: 0 20px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
@ -86,7 +119,7 @@ body {
|
|||||||
.post-content-container {
|
.post-content-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
grid-template-rows: 0.2fr 2.5fr;
|
grid-template-rows: 70px 2.5fr;
|
||||||
gap: 0px 0px;
|
gap: 0px 0px;
|
||||||
grid-auto-flow: row;
|
grid-auto-flow: row;
|
||||||
grid-template-areas: "post-info" "post-content";
|
grid-template-areas: "post-info" "post-content";
|
||||||
@ -156,7 +189,7 @@ pre code {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: last baseline;
|
align-items: last baseline;
|
||||||
font-family: sans-serif;
|
font-family: "Cadman";
|
||||||
border-top-right-radius: 8px;
|
border-top-right-radius: 8px;
|
||||||
border-top-left-radius: 8px;
|
border-top-left-radius: 8px;
|
||||||
background-color: #c1ceb1;
|
background-color: #c1ceb1;
|
||||||
|
BIN
fonts/Cadman_Bold.woff2
Normal file
BIN
fonts/Cadman_Bold.woff2
Normal file
Binary file not shown.
BIN
fonts/Cadman_BoldItalic.woff2
Normal file
BIN
fonts/Cadman_BoldItalic.woff2
Normal file
Binary file not shown.
BIN
fonts/Cadman_Italic.woff2
Normal file
BIN
fonts/Cadman_Italic.woff2
Normal file
Binary file not shown.
BIN
fonts/Cadman_Roman.woff2
Normal file
BIN
fonts/Cadman_Roman.woff2
Normal file
Binary file not shown.
BIN
fonts/ChicagoFLF.woff2
Normal file
BIN
fonts/ChicagoFLF.woff2
Normal file
Binary file not shown.
@ -41,5 +41,9 @@ http {
|
|||||||
location /static/js/ {
|
location /static/js/ {
|
||||||
alias js/;
|
alias js/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /static/fonts/ {
|
||||||
|
alias fonts/;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,45 @@
|
|||||||
|
|
||||||
@use "sass:color";
|
@use "sass:color";
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "body-text";
|
||||||
|
src: url("/static/fonts/DINish[slnt,wdth,wght].woff2") format("woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "site-title";
|
||||||
|
src: url("/static/fonts/ChicagoFLF.woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin cadman($var) {
|
||||||
|
font-family: "Cadman";
|
||||||
|
src: url("/static/fonts/Cadman_#{$var}.woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
@include cadman("Roman");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
@include cadman("Bold");
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
@include cadman("Italic");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
@include cadman("BoldItalic");
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
$accent_color: #c1ceb1;
|
$accent_color: #c1ceb1;
|
||||||
|
|
||||||
$dark_bg: color.scale($accent_color, $lightness: -25%, $saturation: -97%);
|
$dark_bg: color.scale($accent_color, $lightness: -25%, $saturation: -97%);
|
||||||
@ -17,7 +56,8 @@ $button_color: color.adjust($accent_color, $hue: 90);
|
|||||||
%button-base {
|
%button-base {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
color: black;
|
color: black;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9em;
|
||||||
|
font-family: "Cadman";
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
@ -50,7 +90,8 @@ $button_color: color.adjust($accent_color, $hue: 90);
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: "Cadman";
|
||||||
|
// font-size: 18px;
|
||||||
margin: 20px 100px;
|
margin: 20px 100px;
|
||||||
background-color: $main_bg;
|
background-color: $main_bg;
|
||||||
}
|
}
|
||||||
@ -62,7 +103,7 @@ body {
|
|||||||
#topnav {
|
#topnav {
|
||||||
@include navbar($accent_color);
|
@include navbar($accent_color);
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bottomnav {
|
#bottomnav {
|
||||||
@ -82,9 +123,9 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.site-title {
|
.site-title {
|
||||||
padding-right: 30px;
|
font-family: "site-title";
|
||||||
font-size: 1.5rem;
|
font-size: 3rem;
|
||||||
font-weight: bold;
|
margin: 0 20px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
@ -120,7 +161,7 @@ body {
|
|||||||
.post-content-container {
|
.post-content-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
grid-template-rows: 0.2fr 2.5fr;
|
grid-template-rows: 70px 2.5fr;
|
||||||
gap: 0px 0px;
|
gap: 0px 0px;
|
||||||
grid-auto-flow: row;
|
grid-auto-flow: row;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
@ -193,7 +234,7 @@ pre code {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: last baseline;
|
align-items: last baseline;
|
||||||
font-family: sans-serif;
|
font-family: "Cadman";
|
||||||
border-top-right-radius: 8px;
|
border-top-right-radius: 8px;
|
||||||
border-top-left-radius: 8px;
|
border-top-left-radius: 8px;
|
||||||
background-color: $accent_color;
|
background-color: $accent_color;
|
||||||
|
Loading…
Reference in New Issue
Block a user