0.0.7
This commit is contained in:
parent
9fa9d43770
commit
5a5e03cd99
25
.editorconfig
Normal file
25
.editorconfig
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# for all projects
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
# Web Sites
|
||||||
|
[{*.html,*.css,*.json}]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
[humans.txt]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# JavaScript
|
||||||
|
[*.js]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
205
index.html
205
index.html
@ -8,149 +8,78 @@
|
|||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap" rel="stylesheet">
|
||||||
<style type="text/css">
|
<link rel="stylesheet" type="text/css" href="styles/styles.css">
|
||||||
body {
|
|
||||||
background-color: #181818;
|
|
||||||
color: #d1dce0;
|
|
||||||
display: flex;
|
|
||||||
align-content : center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
div.container {
|
|
||||||
width: 600px;
|
|
||||||
margin-bottom: 60px;
|
|
||||||
}
|
|
||||||
div.links {
|
|
||||||
line-height: 2rem;
|
|
||||||
}
|
|
||||||
div.links a {
|
|
||||||
font-size: 1.2rem;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
a.button {
|
|
||||||
background-color: #334b49;
|
|
||||||
border: 2px solid #334b49;
|
|
||||||
border-radius: 8px;
|
|
||||||
color: #d1dce0;
|
|
||||||
padding: 8px;
|
|
||||||
transition: 400ms all;
|
|
||||||
margin-left: 4px;
|
|
||||||
}
|
|
||||||
a.button:hover {
|
|
||||||
background-color: rgba(0, 0, 0, 0);
|
|
||||||
/*color: #e59db5;*/
|
|
||||||
transition: 400ms all;
|
|
||||||
}
|
|
||||||
a.button img {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
font-family: "ABeeZee";
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
p.title {
|
|
||||||
text-align: center;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
p.logo {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 2rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
footer {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
color: #d1dce0;
|
|
||||||
text-align: center;
|
|
||||||
background-color: #181818;
|
|
||||||
opacity: 0.9;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer img {
|
|
||||||
width: 1.2em;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p class="logo">geek & gamer</p>
|
<div class="row">
|
||||||
|
<div class="col-7 text-right">
|
||||||
|
<a href="//blog.iiiypuk.me/" title="Blog">
|
||||||
|
<img src="https://icongr.am/material/text-box.svg?size=24&color=ffffff">
|
||||||
|
Blog
|
||||||
|
</a>
|
||||||
|
<a href="//gemini.iiiypuk.me/" title="HTTP proxy">
|
||||||
|
<img src="https://icongr.am/material/arrow-decision.svg?size=24&color=ffffff">
|
||||||
|
Gemini HTTP Proxy
|
||||||
|
</a>
|
||||||
|
<a href="gemini://iiiypuk.me/" title="Gemini site">
|
||||||
|
<img src="https://icongr.am/material/format-page-break.svg?size=24&color=ffffff">
|
||||||
|
Gemini
|
||||||
|
</a>
|
||||||
|
|
||||||
<div class="links">
|
<hr>
|
||||||
<p style="text-align: center;">
|
|
||||||
<a class="button" href="//blog.iiiypuk.me/" title="Blog">
|
|
||||||
<img src="https://icongr.am/material/text-box.svg?size=24&color=ffffff">
|
|
||||||
Blog
|
|
||||||
</a>
|
|
||||||
<a class="button" href="//gemini.iiiypuk.me/" title="HTTP proxy">
|
|
||||||
<img src="https://icongr.am/material/arrow-decision.svg?size=24&color=ffffff">
|
|
||||||
Gemini HTTP Proxy
|
|
||||||
</a>
|
|
||||||
<a class="button" href="gemini://iiiypuk.me/" title="Gemini site">
|
|
||||||
<img src="https://icongr.am/material/format-page-break.svg?size=24&color=ffffff">
|
|
||||||
Gemini
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<p style="text-align: center;">
|
|
||||||
<a class="button" href="//emilecok.github.io/" title="Turn 0 Around">
|
|
||||||
<img src="https://icongr.am/material/gamepad-square.svg?size=24&color=ffffff">
|
|
||||||
Turn 0 Around game studio
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<p style="text-align: center;">
|
|
||||||
<a class="button" href="//iiiypuk.me/git/" title="My Gitea">
|
|
||||||
<img src="https://icongr.am/material/git.svg?size=24&color=ffffff">
|
|
||||||
My Gitea
|
|
||||||
</a>
|
|
||||||
<a class="button" href="https://iiiypuk.me/git/iiiypuk/GamingWay" title="My Gitea">
|
|
||||||
<img src="https://icongr.am/material/nintendo-game-boy.svg?size=24&color=ffffff">
|
|
||||||
My gaming way
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="links">
|
<a href="//iiiypuk.me/git/" title="My Gitea">
|
||||||
<p class="title">Social</p>
|
<img src="https://icongr.am/material/git.svg?size=24&color=ffffff">
|
||||||
|
My Gitea
|
||||||
|
</a>
|
||||||
|
<a href="https://iiiypuk.me/git/iiiypuk/GamingWay" title="My Gitea">
|
||||||
|
<img src="https://icongr.am/material/nintendo-game-boy.svg?size=24&color=ffffff">
|
||||||
|
My gaming way
|
||||||
|
</a>
|
||||||
|
|
||||||
<p style="text-align: center;">
|
<hr>
|
||||||
<a class="button" href="//twitter.com/_iiiypuk">
|
|
||||||
<img src="https://icongr.am/material/twitter.svg?size=24&color=ffffff">
|
|
||||||
Twitter
|
|
||||||
</a>
|
|
||||||
<a class="button" href="https://t.me/slexbc">
|
|
||||||
<img src="https://icongr.am/material/send.svg?size=24&color=ffffff">
|
|
||||||
Telegram
|
|
||||||
</a>
|
|
||||||
<a class="button" href="//github.com/iiiypuk">
|
|
||||||
<img src="https://icongr.am/material/github.svg?size=24&color=ffffff">
|
|
||||||
GitHub
|
|
||||||
</a>
|
|
||||||
<a class="button" href="//vk.com/0xi3k">
|
|
||||||
<img src="https://icongr.am/material/vk.svg?size=24&color=ffffff">
|
|
||||||
Vk
|
|
||||||
</a>
|
|
||||||
<a class="button" href="https://discord.gg/pqsu6FsHSe">
|
|
||||||
<img src="https://icongr.am/material/discord.svg?size=24&color=ffffff">
|
|
||||||
Discord
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<!-- GPG Fingerprint -->
|
<p class="title">Social</p>
|
||||||
<p style="text-align: center">0CF8 4949 6B78 7E5C 9744 F319 398F C734 78D9 7286</p>
|
|
||||||
</div>
|
<a href="//twitter.com/_iiiypuk">
|
||||||
</div>
|
<img src="https://icongr.am/material/twitter.svg?size=24&color=ffffff">
|
||||||
<footer>
|
Twitter
|
||||||
<p>
|
</a>
|
||||||
Made with
|
<a href="https://t.me/slexbc">
|
||||||
<img src="https://icongr.am/material/coffee.svg?size=128&color=ffffff">
|
<img src="https://icongr.am/material/send.svg?size=24&color=ffffff">
|
||||||
by iiiypuk
|
Telegram
|
||||||
</p>
|
</a>
|
||||||
</footer>
|
<a href="//github.com/iiiypuk">
|
||||||
|
<img src="https://icongr.am/material/github.svg?size=24&color=ffffff">
|
||||||
|
GitHub
|
||||||
|
</a>
|
||||||
|
<a href="//vk.com/0xi3k">
|
||||||
|
<img src="https://icongr.am/material/vk.svg?size=24&color=ffffff">
|
||||||
|
Vk
|
||||||
|
</a>
|
||||||
|
<a href="https://discord.gg/pqsu6FsHSe">
|
||||||
|
<img src="https://icongr.am/material/discord.svg?size=24&color=ffffff">
|
||||||
|
Discord
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<a href="//emilecok.github.io/" title="Turn 0 Around">
|
||||||
|
<img src="https://icongr.am/material/gamepad-square.svg?size=24&color=ffffff">
|
||||||
|
Turn 0 Around game studio
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<p class="logo">geek & gamer</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<footer class="text-center">
|
||||||
|
Made with
|
||||||
|
<img src="https://icongr.am/material/coffee.svg?size=128&color=ffffff">
|
||||||
|
by iiiypuk
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<!-- ver: 0.0.6 -->
|
<!-- ver: 0.0.7 -->
|
||||||
|
1
styles/chota.min.css
vendored
Normal file
1
styles/chota.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
41
styles/styles.css
Normal file
41
styles/styles.css
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
@import url(chota.min.css);
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--bg-color: #181818;
|
||||||
|
--bg-secondary-color: #f3f3f6;
|
||||||
|
--bg-footer: #dadada;
|
||||||
|
--color-text: #d1dce0;
|
||||||
|
--color-primary: #6190ff; /* #14854F */
|
||||||
|
--color-lightGrey: #d2d6dd;
|
||||||
|
--color-grey: #747681;
|
||||||
|
--color-darkGrey: #3f4144;
|
||||||
|
--color-error: #d43939;
|
||||||
|
--color-success: #28bd14;
|
||||||
|
--grid-maxWidth: 120rem;
|
||||||
|
--grid-gutter: 2rem;
|
||||||
|
--font-size: 1.7rem;
|
||||||
|
--font-color: #333333;
|
||||||
|
--font-family-sans: 'ABeeZee', sans-serif;
|
||||||
|
--font-family-mono: monaco, 'Consolas', 'Lucida Console', monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: var(--bg-footer);
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
color: #d1dce0;
|
||||||
|
opacity: 0.9;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer img {
|
||||||
|
width: 1.2em;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user