tangled
alpha
login
or
join now
kacaii.dev
/
blog
0
fork
atom
💻 My personal website
blog.kacaii.dev/
blog
gleam
lustre
0
fork
atom
overview
issues
pulls
pipelines
:truck: no need for a `styles` directory
kacaii.dev
1 month ago
5d197a97
62254d5a
1/1
deploy.yml
success
39s
+26
-26
8 changed files
expand all
collapse all
unified
split
.justfiles
tailwind.just
priv
dist
assets
MapleMono-NF-Bold.ttf
MapleMono-NF-BoldItalic.ttf
MapleMono-NF-Italic.ttf
MapleMono-NF-Regular.ttf
style
font.css
styles.css
src
blog
root.gleam
+1
-1
.justfiles/tailwind.just
···
1
1
set quiet := true
2
2
3
3
input_css := "input.css"
4
4
-
output_css := "priv" / "dist" / "style" / "output.css"
4
4
+
output_css := "priv" / "dist" / "output.css"
5
5
6
6
# Start Tailwind file watching
7
7
[no-cd]
+24
-1
priv/dist/style/blog.css
priv/dist/styles.css
···
1
1
@import "output.css";
2
2
-
@import "font.css";
3
2
@import "https://www.nerdfonts.com/assets/css/webfont.css";
3
3
+
4
4
+
@font-face {
5
5
+
font-family: maple-mono;
6
6
+
src: url(assets/MapleMono-NF-Regular.ttf);
7
7
+
}
8
8
+
9
9
+
@font-face {
10
10
+
font-family: maple-mono;
11
11
+
src: url(assets/MapleMono-NF-Bold.ttf);
12
12
+
font-weight: bold;
13
13
+
}
14
14
+
15
15
+
@font-face {
16
16
+
font-family: maple-mono;
17
17
+
src: url(assets/MapleMono-NF-Italic.ttf);
18
18
+
font-style: italic;
19
19
+
}
20
20
+
21
21
+
@font-face {
22
22
+
font-family: maple-mono;
23
23
+
src: url(assets/MapleMono-NF-BoldItalic.ttf);
24
24
+
font-style: italic;
25
25
+
font-weight: bold;
26
26
+
}
4
27
5
28
:root {
6
29
--hover-glow: 120%;
-23
priv/dist/style/font.css
···
1
1
-
@font-face {
2
2
-
font-family: maple-mono;
3
3
-
src: url(font/MapleMono-NF-Regular.ttf);
4
4
-
}
5
5
-
6
6
-
@font-face {
7
7
-
font-family: maple-mono;
8
8
-
src: url(font/MapleMono-NF-Bold.ttf);
9
9
-
font-weight: bold;
10
10
-
}
11
11
-
12
12
-
@font-face {
13
13
-
font-family: maple-mono;
14
14
-
src: url(font/MapleMono-NF-Italic.ttf);
15
15
-
font-style: italic;
16
16
-
}
17
17
-
18
18
-
@font-face {
19
19
-
font-family: maple-mono;
20
20
-
src: url(font/MapleMono-NF-BoldItalic.ttf);
21
21
-
font-style: italic;
22
22
-
font-weight: bold;
23
23
-
}
priv/dist/style/font/MapleMono-NF-Bold.ttf
priv/dist/assets/MapleMono-NF-Bold.ttf
priv/dist/style/font/MapleMono-NF-BoldItalic.ttf
priv/dist/assets/MapleMono-NF-BoldItalic.ttf
priv/dist/style/font/MapleMono-NF-Italic.ttf
priv/dist/assets/MapleMono-NF-Italic.ttf
priv/dist/style/font/MapleMono-NF-Regular.ttf
priv/dist/assets/MapleMono-NF-Regular.ttf
+1
-1
src/blog/root.gleam
···
14
14
html.meta([attr.charset("utf-8")]),
15
15
html.title([], title),
16
16
viewport_meta,
17
17
-
html.link([attr.rel("stylesheet"), attr.href("style/blog.css")]),
17
17
+
html.link([attr.rel("stylesheet"), attr.href("styles.css")]),
18
18
])
19
19
20
20
let style =