Remove font-medium
This commit is contained in:
parent
8c040b0187
commit
aaa9eb9b3e
3 changed files with 3 additions and 10 deletions
|
@ -16,7 +16,7 @@
|
||||||
(p :class "z-20 text-3xl font-bold"
|
(p :class "z-20 text-3xl font-bold"
|
||||||
(a :preload "mouseover" :href "/" "skyizwhite"))
|
(a :preload "mouseover" :href "/" "skyizwhite"))
|
||||||
(nav :class "flex items-end"
|
(nav :class "flex items-end"
|
||||||
(ul :preload "mouseover" :class "flex gap-4 text-xl font-medium"
|
(ul :preload "mouseover" :class "flex gap-4 text-xl font-bold"
|
||||||
(loop
|
(loop
|
||||||
:for (href label) :in *nav-menu* :collect
|
:for (href label) :in *nav-menu* :collect
|
||||||
(if (string= href (request-uri *request*))
|
(if (string= href (request-uri *request*))
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
"Menu")
|
"Menu")
|
||||||
(ul
|
(ul
|
||||||
:preload "mousedown"
|
:preload "mousedown"
|
||||||
:class "flex flex-col h-fit gap-8 text-3xl font-medium"
|
:class "flex flex-col h-fit gap-8 text-3xl font-bold"
|
||||||
(loop
|
(loop
|
||||||
:for (href label) :in (append '(("/" "home")) *nav-menu*) :collect
|
:for (href label) :in (append '(("/" "home")) *nav-menu*) :collect
|
||||||
(if (string= href (request-uri *request*))
|
(if (string= href (request-uri *request*))
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
(in-package #:website/components/scripts)
|
(in-package #:website/components/scripts)
|
||||||
|
|
||||||
(defparameter *google-font-url*
|
(defparameter *google-font-url*
|
||||||
"https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap")
|
"https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap")
|
||||||
|
|
||||||
(defun bust-cache (url)
|
(defun bust-cache (url)
|
||||||
(format nil "~a?v=~a" url #.(get-universal-time)))
|
(format nil "~a?v=~a" url #.(get-universal-time)))
|
||||||
|
|
|
@ -11,13 +11,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@supports (font-variation-settings: medium) {
|
|
||||||
:root {
|
|
||||||
font-family: "Zen Maru Gothic", sans-serif;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@supports (font-variation-settings: bold) {
|
@supports (font-variation-settings: bold) {
|
||||||
:root {
|
:root {
|
||||||
font-family: "Zen Maru Gothic", sans-serif;
|
font-family: "Zen Maru Gothic", sans-serif;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue