From 82ba5579b8be7434e9ff0e9b6a138c116d3c8c8f Mon Sep 17 00:00:00 2001 From: Victor Roest Date: Fri, 13 May 2022 16:18:48 +0200 Subject: [PATCH] some updates --- assets/DejaVuSansMono-Bold.ttf | 3 ++ assets/DejaVuSansMono-BoldOblique.ttf | 3 ++ assets/DejaVuSansMono-Oblique.ttf | 3 ++ assets/DejaVuSansMono.ttf | 3 ++ assets/monogram.ttf | 3 -- index.html | 10 +++++- projects.html | 25 ++++++++++++++ style.css | 48 +++++++++++++++++++++------ 8 files changed, 84 insertions(+), 14 deletions(-) create mode 100644 assets/DejaVuSansMono-Bold.ttf create mode 100644 assets/DejaVuSansMono-BoldOblique.ttf create mode 100644 assets/DejaVuSansMono-Oblique.ttf create mode 100644 assets/DejaVuSansMono.ttf delete mode 100644 assets/monogram.ttf create mode 100644 projects.html diff --git a/assets/DejaVuSansMono-Bold.ttf b/assets/DejaVuSansMono-Bold.ttf new file mode 100644 index 0000000..fb4675d --- /dev/null +++ b/assets/DejaVuSansMono-Bold.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baada9a5172fe20886251aff0433fc38461912d5daf07287e7bee56620a8da96 +size 331536 diff --git a/assets/DejaVuSansMono-BoldOblique.ttf b/assets/DejaVuSansMono-BoldOblique.ttf new file mode 100644 index 0000000..ee85d0d --- /dev/null +++ b/assets/DejaVuSansMono-BoldOblique.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69081c15c76c827e0a27a5a7f5c74b6135c843499955495ffa8c20d3a98288b +size 253116 diff --git a/assets/DejaVuSansMono-Oblique.ttf b/assets/DejaVuSansMono-Oblique.ttf new file mode 100644 index 0000000..ba21473 --- /dev/null +++ b/assets/DejaVuSansMono-Oblique.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28052813f7a709fc89f52d192dc995ef4f0fdc5c3d7b73a49d6849b1916d0cd0 +size 251472 diff --git a/assets/DejaVuSansMono.ttf b/assets/DejaVuSansMono.ttf new file mode 100644 index 0000000..60f4214 --- /dev/null +++ b/assets/DejaVuSansMono.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:602ec86b8948cfcd956482fe64f94c36c867770149ef2f791d4613f443bcecb3 +size 340240 diff --git a/assets/monogram.ttf b/assets/monogram.ttf deleted file mode 100644 index 3b9c4f0..0000000 --- a/assets/monogram.ttf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a622ff93b22353711b97db2bdc69a926201469a41b1dcf135b80c49c7cbad6e -size 10304 diff --git a/index.html b/index.html index 7c75e50..04ecbb7 100644 --- a/index.html +++ b/index.html @@ -18,8 +18,16 @@

0x76.dev

-

Hiiiii~

+

Hi~ welcome to 0x76.dev

+

+ I'm victor (also known as v), and you can use any pronouns for me. + I like programming, philosphy, reading, and whatever piques my interest at any given time. +

+
+
diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..22b6176 --- /dev/null +++ b/projects.html @@ -0,0 +1,25 @@ + + + + + + + 0x76.dev + + + + + + + + + + +
+
+

0x76.dev - Projects

+

Content TBD

+
+
+ + \ No newline at end of file diff --git a/style.css b/style.css index dba22b4..eda7d61 100644 --- a/style.css +++ b/style.css @@ -1,27 +1,42 @@ :root { --color: #7fffbf; + --compl: #80FFFF; + /* x-offset y-offset blur color */ + --shadow: 0 0 3px #0f0, -2px 0 3px #f00, 2px 0 3px #00f; } @font-face { - font-family: "monogram"; - src: url("./assets/monogram.ttf"); + font-family: "DejaVuSansMono"; + src: url("./assets/DejaVuSansMono.ttf"); +} + +* { + overflow: hidden; } body { background-color: black; color: var(--color); - font-family: "monogram", monospace; + font-family: "DejaVuSansMono", monospace; - /* x-offset y-offset blur color */ - text-shadow: 0 0 2px #0f0, -2px 0 2px #f00, 2px 0 2px #00f; + text-shadow: var(--shadow); +} + +a { + color: var(--compl); + text-decoration: underline; } h1 { font-size: 6rem; } -p { - font-size: 2rem; +h3 { + font-size: 1.5rem; +} + +.x76 { + text-decoration: underline; } main { @@ -37,23 +52,36 @@ main { } -main>section#main { +#main { grid-column: 2; grid-row: 2; } +#links { + grid-column: 2; + grid-row: 3; + + display: grid; + grid-template-columns: repeat(2, 1fr); + grid-template-rows: 1fr; +} + + main>section { text-align: center; } -main>section>p:after { +.blinking-cursor { + padding: 0; + margin: 0 -0.666em; content: ""; width: 1ch; - height: 0.6em; + height: 1em; background: var(--color); display: inline-block; + box-shadow: var(--shadow); animation: blink 1.5s steps(2) infinite; }