tangled
alpha
login
or
join now
lesbian.skin
/
website
1
fork
atom
My website
lesbian.skin
1
fork
atom
overview
issues
pulls
pipelines
Add font
Signed-off-by: Naomi Roberts <mia@naomieow.xyz>
lesbian.skin
8 months ago
03e805b1
15a35021
verified
This commit was signed with the committer's
known signature
.
lesbian.skin
SSH Key Fingerprint:
SHA256:r9sor/Y0mH62+wqzfaRAlsSiqmzSUFVRztY80XnyVGA=
+11
-1
2 changed files
expand all
collapse all
unified
split
src
website
common.gleam
style.gleam
+5
src/website/common.gleam
···
47
47
html.head([], [
48
48
html.meta([attr.attribute("charset", "UTF-8")]),
49
49
html.title([], page <> " | Naomi Roberts"),
50
50
+
html.link([attr.rel("preconnect"), attr.href("https://fonts.bunny.net")]),
51
51
+
html.link([
52
52
+
attr.rel("stylesheet"),
53
53
+
attr.href("https://fonts.bunny.net/css?family=almarai:400"),
54
54
+
]),
50
55
]),
51
56
style.body_query(),
52
57
html.body([attr.class("body-margin"), style.body_styles()], [
+6
-1
src/website/style.gleam
···
20
20
}
21
21
22
22
pub fn body_styles() {
23
23
-
attr.styles([#("color", "black"), #("container-type", "size")])
23
23
+
attr.styles([
24
24
+
#("color", "black"),
25
25
+
#("container-type", "size"),
26
26
+
#("font-family", "'Almarai', sans-serif"),
27
27
+
#("font-size", "18px"),
28
28
+
])
24
29
}
25
30
26
31
pub fn navbar() {