aboutsummaryrefslogtreecommitdiff
path: root/static/styles/risotto
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-03-01 15:50:17 -0800
committerFuwn <[email protected]>2026-03-01 15:50:45 -0800
commit87693d8b99fcbe9a0d64af51f1c786dc62dffd4a (patch)
tree65ae6f17ce98af76de782ba7fb5ff3466861a618 /static/styles/risotto
parentchore(biome): enable formatting for sample media json (diff)
downloaddue.moe-87693d8b99fcbe9a0d64af51f1c786dc62dffd4a.tar.xz
due.moe-87693d8b99fcbe9a0d64af51f1c786dc62dffd4a.zip
chore(biome): enable css formatting
Diffstat (limited to 'static/styles/risotto')
-rw-r--r--static/styles/risotto/header.css2
-rw-r--r--static/styles/risotto/layout.css14
-rw-r--r--static/styles/risotto/logo.css4
-rw-r--r--static/styles/risotto/risotto.css14
-rw-r--r--static/styles/risotto/typography.css24
5 files changed, 29 insertions, 29 deletions
diff --git a/static/styles/risotto/header.css b/static/styles/risotto/header.css
index 3a2e86de..cbe69168 100644
--- a/static/styles/risotto/header.css
+++ b/static/styles/risotto/header.css
@@ -13,5 +13,5 @@
}
.main-nav li::marker {
- content: './';
+ content: "./";
}
diff --git a/static/styles/risotto/layout.css b/static/styles/risotto/layout.css
index f26b4cc9..78423b40 100644
--- a/static/styles/risotto/layout.css
+++ b/static/styles/risotto/layout.css
@@ -5,10 +5,10 @@
margin: 1rem auto;
display: grid;
grid-template-areas:
- 'header'
- 'body'
- 'aside'
- 'footer';
+ "header"
+ "body"
+ "aside"
+ "footer";
grid-template-columns: minmax(0, 1fr); /* https://css-tricks.com/preventing-a-grid-blowout/ */
grid-row-gap: 2rem;
}
@@ -16,9 +16,9 @@
@media (min-width: 45rem) {
.page {
grid-template-areas:
- 'header header'
- 'body aside'
- 'footer footer';
+ "header header"
+ "body aside"
+ "footer footer";
grid-template-columns: minmax(0, 1fr) 15rem;
grid-column-gap: 2rem;
}
diff --git a/static/styles/risotto/logo.css b/static/styles/risotto/logo.css
index 2be8ab09..7c72f471 100644
--- a/static/styles/risotto/logo.css
+++ b/static/styles/risotto/logo.css
@@ -28,11 +28,11 @@ a.page__logo-inner:active {
}
.page__logo-inner:before {
- content: '[';
+ content: "[";
color: var(--bg);
}
.page__logo-inner:after {
- content: '] $';
+ content: "] $";
color: var(--bg);
}
diff --git a/static/styles/risotto/risotto.css b/static/styles/risotto/risotto.css
index 9c5a3132..47842f05 100644
--- a/static/styles/risotto/risotto.css
+++ b/static/styles/risotto/risotto.css
@@ -1,10 +1,10 @@
-@import 'colours.css';
-@import 'typography.css';
-@import 'layout.css';
-@import 'header.css';
-@import 'logo.css';
-@import 'about.css';
-@import 'footer.css';
+@import "colours.css";
+@import "typography.css";
+@import "layout.css";
+@import "header.css";
+@import "logo.css";
+@import "about.css";
+@import "footer.css";
body {
background-color: var(--bg);
diff --git a/static/styles/risotto/typography.css b/static/styles/risotto/typography.css
index 6dc1c581..0fda898d 100644
--- a/static/styles/risotto/typography.css
+++ b/static/styles/risotto/typography.css
@@ -1,6 +1,6 @@
/* Fonts */
:root {
- --font-monospace: 'Fira Mono', monospace;
+ --font-monospace: "Fira Mono", monospace;
}
body {
@@ -40,22 +40,22 @@ h5 + h6 {
}
h1:before {
- content: '# ';
+ content: "# ";
}
h2:before {
- content: '## ';
+ content: "## ";
}
h3:before {
- content: '### ';
+ content: "### ";
}
h4:before {
- content: '#### ';
+ content: "#### ";
}
h5:before {
- content: '##### ';
+ content: "##### ";
}
h6:before {
- content: '###### ';
+ content: "###### ";
}
h1:before,
@@ -108,7 +108,7 @@ ol ol {
}
ul li::marker {
- content: '∗\00A0';
+ content: "∗\00A0";
color: var(--muted);
}
@@ -143,13 +143,13 @@ blockquote {
blockquote::before {
position: absolute;
left: -1.5rem;
- content: '>';
+ content: ">";
color: var(--muted);
}
.twitter-tweet::before {
- content: '\f099';
- font-family: 'Font Awesome 5 Brands';
+ content: "\f099";
+ font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
@@ -189,7 +189,7 @@ hr {
}
hr:after {
- content: '---';
+ content: "---";
color: var(--muted);
}