Tweaks - profile pic, extracting more templates, rel
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
I added the rel=me to the Mastodon link for verification I added profile pics but haven't actually used them on the pages anywhere I pulled in a lot of the CSS from the template so I could start to modify it
This commit is contained in:
49
sass/main.scss
Normal file
49
sass/main.scss
Normal file
@@ -0,0 +1,49 @@
|
||||
@import "parts/_cards.scss";
|
||||
@import "parts/_code.scss";
|
||||
@import "parts/_header.scss";
|
||||
@import "parts/_image.scss";
|
||||
@import "parts/misc.scss";
|
||||
@import "parts/table.scss";
|
||||
@import "parts/tags.scss";
|
||||
|
||||
:root {
|
||||
/* Used for: block comment, hr, ... */
|
||||
--border-color: var(--bg-1);
|
||||
|
||||
/* Fonts */
|
||||
--text-font: 'Jetbrains Mono';
|
||||
--header-font: 'Space Grotesk';
|
||||
--code-font: 'Jetbrains Mono';
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: var(--bg-0);
|
||||
color: var(--text-0);
|
||||
font-family: var(--text-font);
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.content {
|
||||
max-width: 944px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
@media all and (min-width:640px) {
|
||||
html {
|
||||
font-size: 16.5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (min-width:720px) {
|
||||
html {
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (min-width:960px) {
|
||||
html {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user