commit e8550cc761c01c8c4e09bbb6f5d1cf6ba3b2161c Author: Redume Date: Fri Mar 8 19:38:49 2024 +0300 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e63e144 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2022-2024 Redume + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..84b39ab --- /dev/null +++ b/index.html @@ -0,0 +1,112 @@ + + + + + Redume + + + + + + + + + + + + +Mastodon +
+ Redume + Redume avatar + +
+
+
+ Starlio img +

Starlio

+

Amazing wallpaper straight from space!

+ +
+
+ Shirino img +

Shirino

+

Shirino is a telegram bot that outputs the exchange rate using DuckDuckGo and CoinAPI.

+ +
+
+ Kekkai banner +

Kekkai

+

API providing historical currency data.

+ +
+
+ + + + + \ No newline at end of file diff --git a/static/img/Shirino.png b/static/img/Shirino.png new file mode 100644 index 0000000..0df5f13 Binary files /dev/null and b/static/img/Shirino.png differ diff --git a/static/img/captive-portal.svg b/static/img/captive-portal.svg new file mode 100644 index 0000000..6b16a56 --- /dev/null +++ b/static/img/captive-portal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/img/github.svg b/static/img/github.svg new file mode 100644 index 0000000..70f3e63 --- /dev/null +++ b/static/img/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/img/kekkai.png b/static/img/kekkai.png new file mode 100644 index 0000000..e7fdb75 Binary files /dev/null and b/static/img/kekkai.png differ diff --git a/static/img/mail.svg b/static/img/mail.svg new file mode 100644 index 0000000..3975b61 --- /dev/null +++ b/static/img/mail.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/static/img/matrix.svg b/static/img/matrix.svg new file mode 100644 index 0000000..2f7a1cd --- /dev/null +++ b/static/img/matrix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/img/spaceship.png b/static/img/spaceship.png new file mode 100644 index 0000000..965474c Binary files /dev/null and b/static/img/spaceship.png differ diff --git a/static/img/telegram.svg b/static/img/telegram.svg new file mode 100644 index 0000000..ce362fb --- /dev/null +++ b/static/img/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/scripts/tooltip.js b/static/scripts/tooltip.js new file mode 100644 index 0000000..14e9bad --- /dev/null +++ b/static/scripts/tooltip.js @@ -0,0 +1,6 @@ +tooltip = function () { + tippy("[data-tippy-content]", { + delay: [350], + }) +} +tooltip() \ No newline at end of file diff --git a/static/style/main.css b/static/style/main.css new file mode 100644 index 0000000..1da3125 --- /dev/null +++ b/static/style/main.css @@ -0,0 +1,74 @@ +body { + background-color: #131313; + color: white; + font-family: Roboto, sans-serif; +} + +a { + text-decoration: none; +} + +#profile { + display: flex; + justify-content: center; + align-items: center; + flex-direction: row-reverse; +} + +#profile_nickname { + font-size: 2.5em; + margin-left: 1.5%; + margin-top: -5%; +} + +#profile_avatar { + width: 9%; + border-radius: 13px; + margin-top: 1%; +} + +#profile_contact_img { + position: absolute; + margin-left: 11%; + margin-top: 1%; +} + +.project { + width: 370px; + height: 270px; + background-color: #2f3041; + border-radius: 13px; +} + +.project .project-img { + max-height: 40%; + display: block; + margin: 0 auto; +} + +.project-title { + text-align: center; + font-size: 1.3em; + margin-top: 3px +} + +.project-desc { + text-align: center; + margin-top: -6px +} + +.project-links { + text-align: center; + margin-top: 19px +} + +#projects { + display: grid; + grid-template-columns: 100px 100px 100px; + grid-template-rows: auto; + justify-content: space-evenly; + justify-items: center; + align-content: space-evenly; + align-items: center; + margin-top: 60px; +}