diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 5343fbf..0000000 --- a/Dockerfile +++ /dev/null @@ -1,2 +0,0 @@ -FROM nginx -COPY . /usr/share/nginx/html diff --git a/README.md b/README.md new file mode 100644 index 0000000..bb016db --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# 0x76.dev \ No newline at end of file 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/index.html b/index.html index e099abd..04ecbb7 100644 --- a/index.html +++ b/index.html @@ -1,23 +1,34 @@ - - - + + - A Page - My Site - + 0x76.dev + - - - - + + + + -
-// this page is intentionally left blank
-    
+ +
+
+

0x76.dev

+

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. + +

+
+ +
- - + \ No newline at end of file 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/script.js b/script.js new file mode 100644 index 0000000..e69de29 diff --git a/style.css b/style.css new file mode 100644 index 0000000..eda7d61 --- /dev/null +++ b/style.css @@ -0,0 +1,92 @@ +: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: "DejaVuSansMono"; + src: url("./assets/DejaVuSansMono.ttf"); +} + +* { + overflow: hidden; +} + +body { + background-color: black; + color: var(--color); + font-family: "DejaVuSansMono", monospace; + + text-shadow: var(--shadow); +} + +a { + color: var(--compl); + text-decoration: underline; +} + +h1 { + font-size: 6rem; +} + +h3 { + font-size: 1.5rem; +} + +.x76 { + text-decoration: underline; +} + +main { + width: 100%; + height: 100%; + + display: grid; + column-gap: 3rem; + row-gap: 3rem; + + grid-template-columns: 1fr 1fr 1fr; + grid-template-rows: 25% 1fr 1fr; + +} + +#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; +} + + +.blinking-cursor { + padding: 0; + margin: 0 -0.666em; + content: ""; + width: 1ch; + height: 1em; + background: var(--color); + display: inline-block; + + box-shadow: var(--shadow); + animation: blink 1.5s steps(2) infinite; +} + +@keyframes blink { + 0% { + opacity: 0; + } +} \ No newline at end of file