Skip to content

Commit

Permalink
make things larger
Browse files Browse the repository at this point in the history
  • Loading branch information
crestofthebeast committed May 10, 2024
1 parent 92d6382 commit 08cdca9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
14 changes: 14 additions & 0 deletions resources/public/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,10 @@ h3,
max-width: 768px;
}

.max-w-screen-lg {
max-width: 1024px;
}

.list-none {
list-style-type: none;
}
Expand Down Expand Up @@ -1179,6 +1183,16 @@ h3,
font-family: Teranoptia;
}

.text-8xl {
font-size: 6rem;
line-height: 1;
}

.text-6xl {
font-size: 3.75rem;
line-height: 1;
}

.text-gentle-black {
--tw-text-opacity: 1;
color: rgb(55 35 38 / var(--tw-text-opacity));
Expand Down
5 changes: 3 additions & 2 deletions src/powerblog/pages/teranoptia.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

(defn render-page [context page]
(layout/layout {:title "Teranoptia Playground"}
[:article.prose.max-w-screen-md.mx-auto
[:article.prose.max-w-screen-lg.mx-auto
(md/render-html (:page/body page))
[:blockquote.min-h-96.border.border-gentle-black.font-teranoptia.break-all.text-wrap {:contenteditable "true"}]]))
[:blockquote.min-h-96.pl-0.border.border-gentle-black.font-teranoptia.break-all.text-wrap.text-6xl
{:contenteditable "true" :autocomplete "off" :autocorrect "off" :autocapitalize "off" :spellcheck "false"} "sttnr"]]))

0 comments on commit 08cdca9

Please sign in to comment.