diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..bd46cef --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..933aadc --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/nullWebsite.iml b/.idea/nullWebsite.iml new file mode 100644 index 0000000..0c8867d --- /dev/null +++ b/.idea/nullWebsite.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/public_html/images/email.png b/public_html/images/email.png new file mode 100644 index 0000000..fd83a8d Binary files /dev/null and b/public_html/images/email.png differ diff --git a/public_html/images/github.png b/public_html/images/github.png new file mode 100644 index 0000000..d2a496c Binary files /dev/null and b/public_html/images/github.png differ diff --git a/public_html/images/gitlab.png b/public_html/images/gitlab.png new file mode 100644 index 0000000..3613479 Binary files /dev/null and b/public_html/images/gitlab.png differ diff --git a/public_html/images/key.png b/public_html/images/key.png new file mode 100644 index 0000000..9e2e2c8 Binary files /dev/null and b/public_html/images/key.png differ diff --git a/public_html/images/linkedin.png b/public_html/images/linkedin.png new file mode 100644 index 0000000..19e7d84 Binary files /dev/null and b/public_html/images/linkedin.png differ diff --git a/public_html/images/telegram.png b/public_html/images/telegram.png new file mode 100644 index 0000000..78d0769 Binary files /dev/null and b/public_html/images/telegram.png differ diff --git a/public_html/images/twitter.png b/public_html/images/twitter.png new file mode 100644 index 0000000..ac53061 Binary files /dev/null and b/public_html/images/twitter.png differ diff --git a/public_html/index.html b/public_html/index.html index ddcb6eb..b82adf8 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -5,9 +5,24 @@ + -

Hello, World!

-

You can download my pgp public key by clicking here.

+
+
+ $ echo "Hello world!"| +
+
+ +
+
diff --git a/public_html/styles/style.css b/public_html/styles/style.css new file mode 100644 index 0000000..6d3cbb4 --- /dev/null +++ b/public_html/styles/style.css @@ -0,0 +1,49 @@ + +* {} + +body { + background-color: #1b263b; + + display: flex; + width: 100vw; + height: 100vh; + align-items: center; + justify-content: center; + margin: 0; +} + +#container { + display: block; +} + +#hello-world { + color: #e0e1dd; + font-size: 7vh; + font-family: 'Fira Mono', monospace; + letter-spacing: -7px; + -moz-text-size-adjust: auto; +} + +#pipe { + animation: animate 1.5s linear infinite; +} + +@keyframes animate{ + from, 49.9% { opacity: 0; } + to, 50% { opacity: 1; } +} + +#links-nav { + display: flex; + justify-content: center; + flex-wrap: wrap; +} + +#links-nav > a { + padding: 5px; +} + +.social-icon { + max-height: 32px; + max-width: 32px; +} \ No newline at end of file