aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2023-05-10 15:54:37 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2023-05-10 15:54:37 +0530
commita80c83783e7f136b7644cb2789ec267734670c86 (patch)
treee92d1e59e44f334151a8b8ab6368e75b1fa1aada
parent7eabc7bd859c727fce78a0a33fe52d6b18f44bba (diff)
using default fonts
-rw-r--r--static/scss/blog.scss4
-rw-r--r--static/scss/docs.scss4
-rw-r--r--static/scss/index.scss5
-rw-r--r--static/scss/lists.scss2
4 files changed, 7 insertions, 8 deletions
diff --git a/static/scss/blog.scss b/static/scss/blog.scss
index 43fc736..0a984f2 100644
--- a/static/scss/blog.scss
+++ b/static/scss/blog.scss
@@ -24,7 +24,7 @@ $linkColor: #2ed19b;
$linkColorAlt: pink;
* {
- font-family: 'Roboto', sans-serif;
+ font-family: sans-serif;
}
@mixin selectionColor($fgColor, $bgColor) {
@@ -55,7 +55,7 @@ code {
background-color: $bgColorAlt;
padding: 2px 5px;
border-radius: 4px;
- font-family: 'Source Code Pro', sans-serif;
+ font-family: monospace;
}
pre code {
diff --git a/static/scss/docs.scss b/static/scss/docs.scss
index 5203ca1..29d0343 100644
--- a/static/scss/docs.scss
+++ b/static/scss/docs.scss
@@ -16,7 +16,7 @@ $linkColor: #eda74a;
$linkColorAlt: #db4b91;
* {
- font-family: 'Roboto', sans-serif;
+ font-family: sans-serif;
}
@mixin selectionColor($fgColor, $bgColor) {
@@ -41,7 +41,7 @@ code {
background-color: $bgColorAlt;
padding: 2px 5px;
border-radius: 4px;
- * {font-family: 'Source Code Pro', sans-serif;}
+ * {font-family: monospace;}
}
pre code {
diff --git a/static/scss/index.scss b/static/scss/index.scss
index d40b68b..b1731b7 100644
--- a/static/scss/index.scss
+++ b/static/scss/index.scss
@@ -1,9 +1,8 @@
@import "footer";
-@import "roboto";
+// @import "roboto";
* {
- // font-family: 'Source Code Pro', monospace;
- font-family: 'Roboto', sans-serif;
+ font-family: sans-serif;
}
@mixin selection {
diff --git a/static/scss/lists.scss b/static/scss/lists.scss
index ddfa53e..ed01553 100644
--- a/static/scss/lists.scss
+++ b/static/scss/lists.scss
@@ -11,7 +11,7 @@ $navActiveColor: #e790c4;
// #a623db <- nice color might use
* {
- font-family: 'Roboto', sans-serif;
+ font-family: sans-serif;
}
@mixin selectionColor($fgColor, $bgColor) {