mirror of
https://github.com/xHyroM/links.git
synced 2024-11-10 02:28:06 +01:00
reset
This commit is contained in:
parent
5a1b452948
commit
09415d1c8f
6 changed files with 0 additions and 557 deletions
1
CNAME
1
CNAME
|
@ -1 +0,0 @@
|
|||
odkazy.oliminator.net
|
21
LICENSE
21
LICENSE
|
@ -1,21 +0,0 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 OLIMINATOR
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
293
css/css.css
293
css/css.css
|
@ -1,293 +0,0 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #000e14;
|
||||
background-image: linear-gradient(62deg, #000e14 0%, #001929 100%);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
header {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
color: white;
|
||||
font-size: 2em;
|
||||
font-family: "Rubik", sans-serif;
|
||||
text-shadow: 0 0 3px #fff;
|
||||
}
|
||||
|
||||
header img {
|
||||
height: 8em;
|
||||
}
|
||||
|
||||
section {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
section ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
section ul li {
|
||||
margin-bottom: 3.5em;
|
||||
list-style-type: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section ul li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
section ul li .btn-yt {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #db0000;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-yt:hover {
|
||||
background: #a60f0f;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-tiktok {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a257e;
|
||||
padding: 1.2em 6em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-tiktok:hover {
|
||||
background: #5e1956;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-ig {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #ad0046;
|
||||
padding: 1.2em 5.7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-ig:hover {
|
||||
background: #91003b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-github {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #171717;
|
||||
padding: 1.2em 6.7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-github:hover {
|
||||
background: #121212;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-discord {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #4f53ff;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-discord:hover {
|
||||
background: #3c40fa;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-namemc {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #45293f;
|
||||
padding: 1.2em 6.8em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-namemc:hover {
|
||||
background: #2b1a28;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-mcserver {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #6bcf00;
|
||||
padding: 1.2em 5.2em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-mcserver:hover {
|
||||
background: #428000;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-mcplanet {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #006b91;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-mcplanet:hover {
|
||||
background: #014c66;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-laby {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #002a6e;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-laby:hover {
|
||||
background: #00122e;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-more {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: #5786de;
|
||||
padding: 0.8em 2em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.6s;
|
||||
transition: 0.6s;
|
||||
}
|
||||
|
||||
section ul li .btn-more:hover {
|
||||
color: #1c4085;
|
||||
background: #d4e3ff;
|
||||
border-radius: 2.9em;
|
||||
}
|
||||
|
||||
.btn-twitch {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #5200a3;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn-twitch:hover {
|
||||
background: #47008c;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
.btn-replit {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a5a6e;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn-replit:hover {
|
||||
background: #5e3d4b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
.btn-twitter {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #1da1f2;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn-twitter:hover {
|
||||
background: #0f87d1;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 3em;
|
||||
padding: 2.2em;
|
||||
background-color: #000508;
|
||||
}
|
||||
|
||||
.footer-text-main {
|
||||
color: #525252;
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.footer-odkazy {
|
||||
color: gray;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
list-style-type: none;
|
||||
font-size: 0.7em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.footer-odkazy li {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.footer-odkazy-text {
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-decoration: underline;
|
||||
color: #333333;
|
||||
display: inline-block;
|
||||
}
|
||||
/*# sourceMappingURL=css.css.map */
|
File diff suppressed because one or more lines are too long
233
css/css.scss
233
css/css.scss
|
@ -1,233 +0,0 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #000e14;
|
||||
background-image: linear-gradient(62deg, #000e14 0%, #001929 100%);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
header {
|
||||
// LOGO A TEXT
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 2em;
|
||||
h1 {
|
||||
color: white;
|
||||
font-size: 2em;
|
||||
font-family: "Rubik", sans-serif;
|
||||
text-shadow: 0 0 3px #fff;
|
||||
}
|
||||
img {
|
||||
height: 8em;
|
||||
}
|
||||
}
|
||||
section {
|
||||
// TLACITKA
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
li {
|
||||
margin-bottom: 3.5em;
|
||||
list-style-type: none;
|
||||
text-align: center;
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.btn-yt {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #db0000;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #a60f0f;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-tiktok {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a257e;
|
||||
padding: 1.2em 6em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #5e1956;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-ig {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #ad0046;
|
||||
padding: 1.2em 5.7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #91003b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-github {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #171717;
|
||||
padding: 1.2em 6.7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #121212;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-discord {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #4f53ff;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #3c40fa;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-namemc {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #45293f;
|
||||
padding: 1.2em 6.8em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #2b1a28;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-mcserver {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #6bcf00;
|
||||
padding: 1.2em 5.2em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #428000;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-mcplanet {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #006b91;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #014c66;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-laby {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #002a6e;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #00122e;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-more {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: #5786de;
|
||||
padding: 0.8em 2em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.6s;
|
||||
&:hover {
|
||||
color: #1c4085;
|
||||
background: #d4e3ff;
|
||||
border-radius: 2.9em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.btn-twitch {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #5200a3;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #47008c;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
// Bonus buttons
|
||||
.btn-replit {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a5a6e;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #5e3d4b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-twitter {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #1da1f2;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #0f87d1;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-top: 3em;
|
||||
padding: 2.2em;
|
||||
background-color: #000508;
|
||||
}
|
||||
|
||||
.footer-text-main {
|
||||
color: #525252;
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-top: 1em;
|
||||
}
|
||||
.footer-odkazy {
|
||||
color: gray;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
list-style-type: none;
|
||||
font-size: 0.7em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.footer-odkazy li {
|
||||
display: inline-block;
|
||||
}
|
||||
.footer-odkazy-text {
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-decoration: underline;
|
||||
color: #333333;
|
||||
display: inline-block;
|
||||
}
|
BIN
files/logo.png
BIN
files/logo.png
Binary file not shown.
Before Width: | Height: | Size: 14 KiB |
Loading…
Reference in a new issue