all repos — site @ 6b1d5bc190e577fcb4bb42782c12841c5ff71d50

source for my site, found at icyphox.sh

feat: attempt responsive design
Anirudh icyph0x@pm.me
Thu, 21 Jun 2018 14:18:38 +0530
commit

6b1d5bc190e577fcb4bb42782c12841c5ff71d50

parent

5249c46df79f529cd6decc696fd67aad51e61e59

M build/about/index.htmlbuild/about/index.html

@@ -2,16 +2,17 @@ <!DOCTYPE html>

<html> <header> <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <a href="/">home</a> <a href="/gpg.txt">gpg</a> <a href="/about">about</a> <a href="/contact">contact</a> <title> icyphox </title> </header> -<body> +<body style="font-size:1.5vw"> <h2>about</h2> -<p>I'm <em>icyphox</em>, an infosec enthusiast, Linux elitist and an open sourcer and this is all about me.</p> +<p>I'm <em>icyphox</em>, an infosec enthusiast, Linux elitist and an open sourcer. And this is all about me.</p> <h3>technical</h3>

@@ -45,7 +46,7 @@

</body> <hr /> -<footer> +<footer style="font-size:1.5vw"> <p align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</p> <p> </p> <footer>
M build/contact/index.htmlbuild/contact/index.html

@@ -2,6 +2,7 @@ <!DOCTYPE html>

<html> <header> <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { margin-top: 10%;

@@ -13,7 +14,7 @@ icyphox

</title> </header> -<body> +<body style="font-size:1.5vw"> <h2>contact</h2> <p>Reach me at <a href="mailto:icyph0x@pm.me">icyph0x@pm.me</a> or at <code>#rice</code> on <a href="https://rizon.net">Rizon</a>.</p>

@@ -21,7 +22,7 @@

</body> <hr /> -<footer> +<footer style="font-size:1.5vw"> <p align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</p> <p> </p> <footer>
M build/index.htmlbuild/index.html

@@ -2,6 +2,7 @@ <!DOCTYPE html>

<html> <header> <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { margin-top: 10%;

@@ -13,7 +14,7 @@ icyphox

</title> </header> -<body> +<body style="font-size:1.5vw"> <p>Hey there,</p> <p>This is my new, less flashy website. I lost the Markdown source of my old site in an SSD wipe :v <br />

@@ -24,7 +25,7 @@

</body> <hr /> -<footer> +<footer style="font-size:1.5vw"> <p align="center">Built using <a href="https://github.com/icyphox/vite">Vite</a>.</p> <p> </p> <footer>
M templates/index.htmltemplates/index.html

@@ -2,6 +2,7 @@ <!DOCTYPE html>

<html> <header> <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { margin-top: 10%;

@@ -13,12 +14,12 @@ {{ title }}

</title> </header> -<body> +<body style="font-size:1.5vw"> {{ body }} </body> <hr /> -<footer> +<footer style="font-size:1.5vw"> {{ footer }} <p> {{ author }} </p> <footer>
M templates/normal.htmltemplates/normal.html

@@ -2,18 +2,19 @@ <!DOCTYPE html>

<html> <header> <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> {{ header }} <title> {{ title }} </title> </header> -<body> +<body style="font-size:1.5vw"> {{ body }} </body> <hr /> -<footer> +<footer style="font-size:1.5vw"> {{ footer }} <p> {{ author }} </p> <footer>