diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ad3c511 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +Copyright 2024 Nakidai + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/root/credits.html b/root/credits.html new file mode 100644 index 0000000..3886f9b --- /dev/null +++ b/root/credits.html @@ -0,0 +1,35 @@ + + + + + + + Credits + + +
+
+

Credits

+
+
+ +
+ +
+ + \ No newline at end of file diff --git a/root/images/discord.png b/root/images/discord.png new file mode 100644 index 0000000..80ac200 Binary files /dev/null and b/root/images/discord.png differ diff --git a/root/images/git.png b/root/images/git.png new file mode 100644 index 0000000..42d186b Binary files /dev/null and b/root/images/git.png differ diff --git a/root/images/github.png b/root/images/github.png new file mode 100644 index 0000000..432750d Binary files /dev/null and b/root/images/github.png differ diff --git a/root/images/steam.png b/root/images/steam.png new file mode 100644 index 0000000..f682859 Binary files /dev/null and b/root/images/steam.png differ diff --git a/root/index.html b/root/index.html index 3341cec..af1599b 100644 --- a/root/index.html +++ b/root/index.html @@ -7,8 +7,50 @@ Nakidai -
-

This is my homepage UwU.

+
+
+

Nakidai

+
+
+
+
+

About

+
+
+

I'm coder from Russia. I like to play computer games, but since I have weak office office I usually play lightweight games (but better to check my steam).

+

I know Python and little The C, but I don't know any frameworks. :<

+
+
+
+
+

Links

+
+
+

+ + Github + + + Github + +

+

+ + Github + + + Steam + +

+
+
+
+
\ No newline at end of file diff --git a/root/style.css b/root/style.css index 9ae77bd..531b35c 100644 --- a/root/style.css +++ b/root/style.css @@ -4,14 +4,75 @@ html, body { padding: 0; } -.center { - color: lightgreen; - background-color: red; +div { + word-wrap: break-word; +} + +.wrapper { + background-color: black; + color: grey; font-family: sans-serif; height: 100%; display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; +} + +.header { + height: 20%; + font-size: xxx-large; +} + +.content-wrapper { + height: 60%; + width: 100%; + + display: flex; + flex-direction: row; justify-content: center; align-items: center; +} + +.content { + max-width: 300px; + margin: 1%; + padding: 1%; + border-radius: 20px; + + color: black; + font-size: large; + + background-color: darkgrey; +} + +.title { + text-align: center; +} + +.info { + text-align: justify; +} + +.footer { + width: 100%; + height: 20%; + + display: flex; + justify-content: flex-end; + align-items: flex-end; + + position: relative; +} + +.copyright { + text-align: right; + + position: absolute; + bottom: 0; + right: 0; + + padding: 1%; } \ No newline at end of file