first commit

This commit is contained in:
ry 2020-02-18 18:27:17 +01:00
commit 1ed65ca227
34 changed files with 1171 additions and 0 deletions

83
assets/css/main.css Normal file
View file

@ -0,0 +1,83 @@
@font-face {
font-family: 'Gotham';
src: url("../fonts/Gotham-Font/Gotham-Bold.otf");
}
* {
margin: 0;
padding: 0;
padding-cursor: pointer;
}
body {
font-family: 'Gotham', sans-serif;
background-image: url("../images/background.png");
background-size: cover;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
}
.socials {
font-size: 4vh;
left: 0;
line-height: 4vh;
letter-spacing: 15px;
position: absolute;
text-align: center;
top: 25%;
width: 100%;
text-transform: uppercase;
}
.socials a {
text-decoration: none;
color: #ffffff;
-webkit-animation: SocialsAnimated 5s linear infinite;
animation: SocialsAnimated 5s linear infinite;
}
.socials a:hover {
color: #a865ff81;
}
.logo {
width: auto;
height: 10vh;
}
.credits {
position: absolute;
left: 50%;
right: 25%;
bottom: 30px;
margin-left: -50px;
}
.creator {
font-size: 2.5vh;
color: white;
display: table-caption;
padding: 1vh;
position: absolute;
top: 95%;
left: 50%;
margin-left: -120px;
}
.creator a {
text-decoration: none;
margin: 0;
padding: 0;
color: #8445fa;
}
.creator a:hover {
color: #8445fa50;
}
.them {
width: auto;
height: 16vh;
}
/*# sourceMappingURL=main.css.map */

9
assets/css/main.css.map Normal file
View file

@ -0,0 +1,9 @@
{
"version": 3,
"mappings": "AAAA,UAAU;EACN,WAAW,EAAE,QAAQ;EACrB,GAAG,EAAE,2CAA2C;;;AAGpD,AAAA,CAAC,CAAC;EACD,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACP,cAAM,EAAE,OAAO;CAAK;;AAGxB,AAAA,IAAI,CAAC;EACD,WAAW,EAAE,oBAAoB;EACjC,gBAAgB,EAAE,+BAA+B;EACjD,eAAe,EAAE,KAAK;EACtB,qBAAqB,EAAE,KAAK;EAC5B,mBAAmB,EAAE,MAAM;EAC3B,iBAAiB,EAAE,SAAS;CAAG;;AAGnC,AAAA,QAAQ,CAAC;EACL,SAAS,EAAE,GAAG;EACd,IAAI,EAAE,CAAC;EACP,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,IAAI;EACpB,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,MAAM;EAClB,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,SAAS;CAQA;;AAjB7B,AAWI,QAXI,CAWJ,CAAC,CAAC;EACE,eAAe,EAAE,IAAI;EACrB,KAAK,EAAE,OAAO;EACd,SAAS,EAAE,kCAAkC;CAAG;;AAdxD,AAgBI,QAhBI,CAgBJ,CAAC,AAAA,MAAM,CAAC;EACJ,KAAK,EAAE,SAAS;CAAG;;AAG3B,AAAA,KAAK,CAAC;EACF,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;CAAG;;AAEnB,AAAA,QAAQ,CAAC;EACL,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,GAAG;EACT,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,KAAK;CAAG;;AAEzB,AAAA,QAAQ,CAAC;EACL,SAAS,EAAE,KAAK;EAChB,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,aAAa;EACtB,OAAO,EAAE,GAAG;EACZ,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,WAAW,EAAE,MAAM;CAAG;;AAE1B,AAAA,QAAQ,CAAC,CAAC,CAAC;EACH,eAAe,EAAE,IAAI;EACrB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,OAAO;CAAG;;AAEzB,AAAA,QAAQ,CAAC,CAAC,AAAA,MAAM,CAAC;EACb,KAAK,EAAE,SAAS;CAAG;;AAEvB,AAAA,KAAK,CAAC;EACF,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;CAAG",
"sources": [
"main.sass"
],
"names": [],
"file": "main.css"
}

74
assets/css/main.sass Normal file
View file

@ -0,0 +1,74 @@
@font-face
font-family: 'Gotham';
src: url('../fonts/Gotham-Font/Gotham-Bold.otf');
*
margin: 0
padding: 0
cursor: pointer
body
font-family: 'Gotham', sans-serif
background-image: url('../images/background.png')
background-size: cover
background-attachment: fixed
background-position: center
background-repeat: no-repeat
.socials
font-size: 4vh
left: 0
line-height: 4vh
letter-spacing: 15px
position: absolute
text-align: center
top: 25%
width: 100%
text-transform: uppercase
a
text-decoration: none
color: #ffffff
animation: SocialsAnimated 5s linear infinite
a:hover
color: #a865ff81
.logo
width: auto
height: 10vh
.credits
position: absolute
left: 50%
right: 25%
bottom: 30px
margin-left: -50px
.creator
font-size: 2.5vh
color: white
display: table-caption
padding: 1vh
position: absolute
top: 95%
left: 50%
margin-left: -120px
.creator a
text-decoration: none
margin: 0
padding: 0
color: #8445fa
.creator a:hover
color: #8445fa50
.them
width: auto
height: 16vh

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1 @@
You can download this font here: https://freefontsfamily.com

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
assets/images/moon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 KiB

BIN
assets/images/sor_white.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
assets/images/them.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 KiB