File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import { Container } from "styled-system/jsx";
4
4
---
5
5
6
6
<footer >
7
- <Container >
8
- <HStack borderTopWidth = " normal " py = " 4 " justify =" space-between" >
7
+ <Container borderTopWidth = " normal " >
8
+ <HStack height = " 12 " justify =" space-between" >
9
9
<span class =" caret-blink" >TheComputerM</span >
10
10
{ new Date ().getFullYear ()}
11
11
</HStack >
Original file line number Diff line number Diff line change
1
+ ---
2
+ import { Center } from " styled-system/jsx" ;
3
+ import BaseLayout from " ~/layouts/BaseLayout.astro" ;
4
+ ---
5
+
6
+ <BaseLayout title =" 404 | Not Found" >
7
+ <Center position =" relative" style ={ { height: " calc(100svh - 7rem)" }} >
8
+ <h1 >404</h1 >
9
+ </Center >
10
+ </BaseLayout >
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ const { Content } = await render(entry);
32
32
color: #9d00ff;
33
33
text-shadow:
34
34
4px 0 6px #ff0000,
35
- -4px 0 6px #0000ff;
35
+ -4px 0 6px #0000ff,
36
+ 0 0 2rem currentColor;
36
37
}
37
38
38
39
.banner {
@@ -46,7 +47,7 @@ const { Content } = await render(entry);
46
47
inset: 0;
47
48
z-index: 2;
48
49
pointer-events: none;
49
-
50
+ mix-blend-mode: color-burn;
50
51
background: linear-gradient(
51
52
rgba(18, 16, 16, 0) 50%,
52
53
rgba(0, 0, 0, 0.25) 50%
@@ -57,6 +58,7 @@ const { Content } = await render(entry);
57
58
rgba(0, 255, 0, 0.02),
58
59
rgba(0, 0, 255, 0.06)
59
60
);
61
+
60
62
background-size:
61
63
100% 2px,
62
64
3px 100%;
You can’t perform that action at this time.
0 commit comments