Version - 1.1.1 - 1-43
This commit is contained in:
167
Version - 43/css/brb.css
Normal file
167
Version - 43/css/brb.css
Normal file
@@ -0,0 +1,167 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
|
||||
body{
|
||||
user-select: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-color: #333;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jonathan{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
background: #333;
|
||||
font-size: 15pt;
|
||||
}
|
||||
#logclick{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
top: 60px;
|
||||
left: 50%;
|
||||
text-align: center;
|
||||
transform: translate(-50%,0);
|
||||
font-size: 17.5pt;
|
||||
}
|
||||
@media only screen and (max-width: 700px){
|
||||
#logclick{font-size: 15pt;}
|
||||
}
|
||||
#disclick{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/*BRB*/
|
||||
#unpressed{
|
||||
position: absolute;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
border-radius: 150px;
|
||||
}
|
||||
#pressed{
|
||||
position: absolute;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
visibility: hidden;
|
||||
border-radius: 150px;
|
||||
}
|
||||
#button{
|
||||
user-select: none;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin: -150px 0 0 -150px;
|
||||
border-radius: 150px;
|
||||
cursor: pointer;
|
||||
}
|
||||
/* Other BTNS */
|
||||
|
||||
/* Šmol change */
|
||||
.changelog{
|
||||
position: absolute;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
filter: drop-shadow(0 0 10px #000);
|
||||
background: #0098FF;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.changelog svg{
|
||||
border-radius: 50%;
|
||||
height: 99%;
|
||||
filter: drop-shadow(0 0 10px #000);
|
||||
color: #fff;
|
||||
transition: 0.5s;
|
||||
}
|
||||
.changelog:hover svg{
|
||||
color: #d33;
|
||||
}
|
||||
|
||||
/* Social */
|
||||
.socmenu{
|
||||
position: absolute;
|
||||
left: -45px;
|
||||
bottom: -45px;
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.socmenu .toggle{
|
||||
position: relative;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 50%;
|
||||
box-shadow:
|
||||
0 25px 15px rgba(0,0,0,0.25),
|
||||
0 25px 20px rgba(0,0,0,0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
filter: drop-shadow(0 0 10px rgba(0,0,0,.75));
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
font-size: 3em;
|
||||
color: #fff;
|
||||
z-index: 1000000;
|
||||
}
|
||||
.socmenu .toggle svg{
|
||||
position: absolute;
|
||||
filter: drop-shadow(0 0 10px rgba(0,0,0,.75));
|
||||
opacity: 0;
|
||||
transition: 0.5s;
|
||||
}
|
||||
.socmenu .toggle svg{transition: 0.5s;}
|
||||
.socmenu .toggle svg:nth-child(1){opacity:1;transform:rotate(360deg);}
|
||||
.socmenu.active .toggle svg:nth-child(1){opacity:0;transform:rotate(0deg);}
|
||||
.socmenu .toggle svg:nth-child(2){opacity:0;transform:rotate(0deg);}
|
||||
.socmenu.active .toggle svg:nth-child(2){opacity:1;transform:rotate(360deg);}
|
||||
.socmenu li{
|
||||
position: absolute;
|
||||
left: 0;
|
||||
list-style: none;
|
||||
transform-origin: 110px;
|
||||
transition: 0.5s;
|
||||
transition-delay: calc(0.05s*var(--i));
|
||||
transform: rotate(calc(360deg/4*var(--i)));
|
||||
scale: 0;
|
||||
z-index: 1;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.socmenu li::before{
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -30px;
|
||||
width: 20px;
|
||||
height: 100%;
|
||||
background: #fff;
|
||||
z-index: 10;
|
||||
transform: skewX(325deg) translateX(0);
|
||||
box-shadow: -5px 0 0 #fff5;
|
||||
transition: 0.5s;
|
||||
}
|
||||
.socmenu li:hover::before{
|
||||
transform: skewX(325deg) translateX(180px);
|
||||
box-shadow: -50px 0 0 #fff5;
|
||||
}
|
||||
.socmenu.active li{scale:1;}
|
||||
.socmenu li a{
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: var(--clr);
|
||||
color: #fff;
|
||||
font-size: 2.25em;
|
||||
border-radius: 50%;
|
||||
transform: rotate(calc(360deg/-4*var(--i)));
|
||||
box-shadow: 0 3px 4px rgba(0,0,0,0.15)
|
||||
}
|
||||
.socmenu li a img{width:1em;}
|
||||
98
Version - 43/css/menu.css
Normal file
98
Version - 43/css/menu.css
Normal file
@@ -0,0 +1,98 @@
|
||||
.menu-container{
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 300px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: 'Poppins';
|
||||
}
|
||||
.button{
|
||||
position: relative;
|
||||
background: #1b1b1b;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
padding: 8px 20px;
|
||||
width: 150px;/* 100% */
|
||||
line-height: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-radius: 25px;
|
||||
cursor: pointer;
|
||||
transition: width .4s;
|
||||
}
|
||||
.button.expand{
|
||||
width: 100%;
|
||||
}
|
||||
.fas{
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.menu-container .button span svg{
|
||||
position: absolute;
|
||||
margin-right: 15px;
|
||||
transition: 200ms;
|
||||
}
|
||||
.menu-container .button span svg:nth-child(1){opacity:1;}
|
||||
.menu-container .button.expand span svg:nth-child(1){opacity:0;}
|
||||
.menu-container .button span svg:nth-child(2){opacity:0;}
|
||||
.menu-container .button.expand span svg:nth-child(2){opacity:1;}
|
||||
ul{
|
||||
list-style: none;
|
||||
position: absolute;
|
||||
top: 65px;
|
||||
display: block;
|
||||
background: #1b1b1b;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
box-shadow: 0 3px 6px rgba(0,0,0,.3);
|
||||
padding-inline-start: 0px;
|
||||
}
|
||||
ul:before{
|
||||
position: absolute;
|
||||
content: '';
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: #1b1b1b;
|
||||
top: -10px;
|
||||
right: 15px;
|
||||
transform: rotate(45deg);
|
||||
z-index: -1;
|
||||
}
|
||||
ul li{
|
||||
line-height: 35px;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid rgba(255,255,255,.1);
|
||||
}
|
||||
ul li:hover:first-child{
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
ul li:hover:last-child{
|
||||
border-radius: 0 0 5px 5px;
|
||||
}
|
||||
ul li:hover{
|
||||
box-shadow: inset 0 0 5px #33ff33,
|
||||
inset 0 0 10px #66ff66;
|
||||
}
|
||||
ul li:last-child{
|
||||
border-bottom: none;
|
||||
}
|
||||
ul li a{
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #fff;
|
||||
padding: 8px 0;
|
||||
font-size: 18px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul li:hover a{
|
||||
color: #44dd44;
|
||||
}
|
||||
53
Version - 43/css/sett.css
Normal file
53
Version - 43/css/sett.css
Normal file
@@ -0,0 +1,53 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
}
|
||||
body{
|
||||
user-select: none;
|
||||
background-color: #333;
|
||||
}
|
||||
#jonathan{
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
background: radial-gradient(125% 100% at 50% 0%,#fa552c 20%,transparent 70%);
|
||||
}
|
||||
.main{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
.item{
|
||||
position: relative;
|
||||
/* border: none; */
|
||||
top: 5px;
|
||||
margin: 2rem 3vw 2rem 3vw;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 6.9px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 350px;
|
||||
height: 100px;
|
||||
filter: drop-shadow(0px 20px 14px #444);
|
||||
}
|
||||
button{
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 0.5rem;
|
||||
border: none;
|
||||
filter: drop-shadow(10px 10px 14px #444);
|
||||
}
|
||||
::-webkit-scrollbar{
|
||||
background: transparent;
|
||||
width: 5px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb{
|
||||
background: linear-gradient(transparent, #00ec00);
|
||||
border-radius: 0 0 0.5rem 0.5rem;
|
||||
}
|
||||
159
Version - 43/css/shop.css
Normal file
159
Version - 43/css/shop.css
Normal file
@@ -0,0 +1,159 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
|
||||
*{
|
||||
/* By MrEidam */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
box-sizing: border-box;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 15pt;
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
/* Clisks */
|
||||
#jonathan{
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
top: 0;
|
||||
background: radial-gradient(125% 100% at 50% 0%,#11ABFF 20%,transparent 70%);
|
||||
/* By MrEidam */
|
||||
}
|
||||
#logclick{
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 5ch;
|
||||
margin: 0 5vw 0 5vw;
|
||||
padding: 1rem;
|
||||
border-radius: 1rem;
|
||||
z-index: 69;
|
||||
width: auto;
|
||||
top: 30px;
|
||||
height: 85px;
|
||||
filter: drop-shadow(10px 8px 6px #333);
|
||||
}
|
||||
|
||||
#imgcli{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin: 0.1rem;
|
||||
width: 100px;
|
||||
aspect-ratio: 1/1;
|
||||
margin: 0.5rem;
|
||||
object-fit: contain;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.backtop{
|
||||
height: 230px;
|
||||
max-width: auto;
|
||||
margin: 0 1.5vw 0 1.5vw;
|
||||
border-radius: 0 0 90px 90px;
|
||||
background: linear-gradient(#11ABFF, #ccccccab);
|
||||
}
|
||||
|
||||
.main{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
/* By MrEidam */
|
||||
.item{
|
||||
border: none;
|
||||
top: 5px;
|
||||
margin: 2rem 3vw 2rem 3vw;
|
||||
padding: 1rem;
|
||||
border-radius: 6.9px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
width: 500px;
|
||||
height: 340px;
|
||||
filter: drop-shadow(0px 20px 14px #444);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.item img{
|
||||
width: 100px;
|
||||
aspect-ratio: 1/1;
|
||||
margin: 0.5rem;
|
||||
object-fit: contain;
|
||||
filter: drop-shadow(10px 8px 6px #333);
|
||||
pointer-events: none
|
||||
}
|
||||
.buttons{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
/* By MrEidam */
|
||||
.buttons button{
|
||||
background-color: var(--Bcolor);
|
||||
border-radius: 8px;
|
||||
margin: 1rem;
|
||||
}
|
||||
|
||||
.buyone{
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.buymax{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* By MrEidam */
|
||||
|
||||
.clickbtn{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
.clickbtn button{
|
||||
background-color: var(--Bcolor);
|
||||
border-radius: 8px;
|
||||
margin: 0 1rem 0.5rem 1rem;
|
||||
}
|
||||
|
||||
.row{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
}
|
||||
button{
|
||||
border: none;
|
||||
filter: drop-shadow(8px 6px 4px #555);
|
||||
}
|
||||
@media only screen and (max-width: 555px){
|
||||
.row{
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.item{
|
||||
width: auto;
|
||||
margin: 2rem 10vw 2rem 10vw;
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar{
|
||||
background: transparent;
|
||||
width: 5px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb{
|
||||
background: linear-gradient(transparent, #00ec00);
|
||||
border-radius: 0 0 0.5rem 0.5rem;
|
||||
}
|
||||
193
Version - 43/css/upgr.css
Normal file
193
Version - 43/css/upgr.css
Normal file
@@ -0,0 +1,193 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 15pt;
|
||||
background-color: #333;
|
||||
}
|
||||
#jonathan{
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 200px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
top: 0;
|
||||
background: radial-gradient(125% 100% at 50% 0%,#efff11 20%,transparent 70%);
|
||||
}
|
||||
|
||||
/* By MrEidam */
|
||||
|
||||
/* Lemons */
|
||||
#loglm{
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 5ch;
|
||||
margin: 0 5vw 0 5vw;
|
||||
padding: 1rem;
|
||||
border: 5px dashed #d3e418e1;
|
||||
border-radius: 1rem;
|
||||
z-index: 69;
|
||||
width: auto;
|
||||
top: 30px;
|
||||
height: 85px;
|
||||
filter: drop-shadow(10px 8px 6px #333);
|
||||
}
|
||||
|
||||
#imglm{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin: 0.1rem;
|
||||
width: 100px;
|
||||
aspect-ratio: 1/1;
|
||||
margin: 0.1rem;
|
||||
object-fit: contain;
|
||||
pointer-events: none;
|
||||
}
|
||||
/* By MrEidam */
|
||||
|
||||
main{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
/* By MrEidam */
|
||||
.item{
|
||||
border: none;
|
||||
top: 5px;
|
||||
margin: 2rem 3vw 2rem 3vw;
|
||||
padding: 1rem;
|
||||
border-radius: 6.9px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
width: 500px;
|
||||
height: 390px;
|
||||
filter: drop-shadow(0px 20px 14px #444);
|
||||
}
|
||||
|
||||
.item img{
|
||||
width: 100px;
|
||||
aspect-ratio: 1/1;
|
||||
margin: 0.5rem;
|
||||
object-fit: contain;
|
||||
|
||||
filter: drop-shadow(10px 8px 6px #333);
|
||||
pointer-events: none
|
||||
}
|
||||
.buttons{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
/* By MrEidam */
|
||||
.buttons button{
|
||||
background-color: var(--Bcolor);
|
||||
border-radius: 8px;
|
||||
margin: 1rem;
|
||||
}
|
||||
|
||||
.buyone{
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.buyTone{
|
||||
width: 100px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.buymax{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
/* By MrEidam */
|
||||
|
||||
.clickbtn{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
.clickbtn button{
|
||||
background-color: var(--Bcolor);
|
||||
border-radius: 8px;
|
||||
margin: 0 1rem 0.5rem 1rem;
|
||||
}
|
||||
|
||||
.row{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
}
|
||||
button{
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
filter: drop-shadow(8px 6px 4px #555);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 550px){
|
||||
.row{
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.item{
|
||||
width: auto;
|
||||
margin: 2rem 10vw 2rem 10vw;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#prog{
|
||||
appearance: none;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
h2{
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 5px;
|
||||
font-weight: 900;
|
||||
word-spacing: 10px;
|
||||
}
|
||||
|
||||
#ItsTime{
|
||||
position: relative;
|
||||
margin: 1rem;
|
||||
width: 69%;
|
||||
height: 69px;
|
||||
display: none;
|
||||
border-radius: 6.9px;
|
||||
transition: 0.5s;
|
||||
animation: time 1s linear infinite;
|
||||
background-color: #3d3;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 5px;
|
||||
font-weight: 900;
|
||||
word-spacing: 10px;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
cursor: cell;
|
||||
}
|
||||
|
||||
@keyframes time{
|
||||
from{filter: hue-rotate(0deg);}
|
||||
to{filter: hue-rotate(360deg);}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar{
|
||||
background: transparent;
|
||||
width: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb{
|
||||
background: linear-gradient(transparent, #00ec00);
|
||||
border-radius: 0 0 0.5rem 0.5rem;
|
||||
}
|
||||
Reference in New Issue
Block a user