Fix monospace font by using Courier Prime everywhere.
parent
07ac41a59a
commit
aa14390b86
12
README.org
12
README.org
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
- [[https://christianmoe.com/en/notes/static-site.html][Minerva's owlet: A mostly static website with Emacs Orgmode]]
|
- [[https://christianmoe.com/en/notes/static-site.html][Minerva's owlet: A mostly static website with Emacs Orgmode]]
|
||||||
- [[https://systemcrafters.net/publishing-websites-with-org-mode/building-the-site/][Systemcrafters: Publishing websites with org mode]]
|
- [[https://systemcrafters.net/publishing-websites-with-org-mode/building-the-site/][Systemcrafters: Publishing websites with org mode]]
|
||||||
- [[https://taingram.org/blog/org-mode-blog.html][Taingram.org: Building a Emacs Org-Mode Blog]]
|
- [[https://taingram.org/blog/org-mode-blog.html][TaIngram.org: Building a Emacs Org-Mode Blog]]
|
||||||
|
|
||||||
** Usage
|
** Usage
|
||||||
|
|
||||||
|
@ -33,11 +33,17 @@ https://certbot.eff.org/instructions?ws=apache&os=pip
|
||||||
** Current issues
|
** Current issues
|
||||||
|
|
||||||
|
|
||||||
*** Broken pre item in menu
|
*** DONE Broken pre item in menu
|
||||||
|
|
||||||
Somehow system font Free Serif is taken by the broser instead of Noto mono.
|
Somehow system font Free Serif is taken by the broser instead of Noto mono.
|
||||||
|
|
||||||
*** English blog & menu
|
*** TODO English blog & menu
|
||||||
|
|
||||||
- blog index should show only blogposts
|
- blog index should show only blogposts
|
||||||
- going back from blogpost to blog should not go to /en/blog/blog.
|
- going back from blogpost to blog should not go to /en/blog/blog.
|
||||||
|
|
||||||
|
*** TODO Created dates
|
||||||
|
|
||||||
|
Should prioritize ~#+DATE~ property in document and not use current date.
|
||||||
|
|
||||||
|
*** TODO Add a tagging system
|
||||||
|
|
|
@ -2,18 +2,15 @@
|
||||||
font-family: CourierPrime;
|
font-family: CourierPrime;
|
||||||
src: url(fonts/CourierPrime-Regular.ttf);
|
src: url(fonts/CourierPrime-Regular.ttf);
|
||||||
}
|
}
|
||||||
/* font-family: 'Noto Sans Mono', sans-serif; */
|
|
||||||
|
|
||||||
|
body, pre, .nav {
|
||||||
body {
|
font-family: "CourierPrime", monospace;
|
||||||
font-family: CourierPrime;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.rainbow, h1 {
|
.rainbow, h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
font-family: monospace;
|
|
||||||
letter-spacing: 5px;
|
letter-spacing: 5px;
|
||||||
}
|
}
|
||||||
.rainbow_text_animated, h1 {
|
.rainbow_text_animated, h1 {
|
||||||
|
@ -28,7 +25,6 @@ body {
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2.75rem;
|
font-size: 2.75rem;
|
||||||
font-family: CourierPrime;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.rainbow_text_animated_2 {
|
.rainbow_text_animated_2 {
|
||||||
|
@ -47,7 +43,6 @@ h1 {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-family: monospace;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#preamble pre {
|
#preamble pre {
|
||||||
|
|
Loading…
Reference in New Issue