initial commit
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
:root {
|
||||
--background: #151515;
|
||||
--secondary-background: #111111;
|
||||
--main-color: #850000;
|
||||
--main-hover-color: #258efe;
|
||||
--discord-col: #7289DA;
|
||||
--paypal: #253B80;
|
||||
}
|
||||
.icon {
|
||||
transition: linear 0.3s;
|
||||
}
|
||||
.btn:hover .icon {
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.icon2 {
|
||||
transition: linear 0.3s;
|
||||
}
|
||||
.btn2:hover .icon2 {
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.iconB {
|
||||
transition: linear 0.3s;
|
||||
}
|
||||
.btnB:hover .iconB {
|
||||
color: black;
|
||||
}
|
||||
|
||||
input::placeholder {
|
||||
color: rgb(207, 203, 202);
|
||||
}
|
||||
input:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.container {
|
||||
height: 100vh;
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.drop-in {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 500ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
|
||||
@keyframes drop-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-100px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translate(0px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.even {
|
||||
border-radius: 2rem;
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
:root {
|
||||
--background: #151515;
|
||||
--secondary-background: #111111;
|
||||
--main-color: #850000;
|
||||
--main-hover-color: #258efe;
|
||||
--discord-col: #7289DA;
|
||||
--paypal: #253B80;
|
||||
}
|
||||
.icon {
|
||||
transition: linear 0.3s;
|
||||
}
|
||||
.btn:hover .icon {
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.icon2 {
|
||||
transition: linear 0.3s;
|
||||
}
|
||||
.btn2:hover .icon2 {
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.iconB {
|
||||
transition: linear 0.3s;
|
||||
}
|
||||
.btnB:hover .iconB {
|
||||
color: black;
|
||||
}
|
||||
|
||||
input::placeholder {
|
||||
color: rgb(207, 203, 202);
|
||||
}
|
||||
input:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.container {
|
||||
height: 100vh;
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.drop-in1 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 500ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in2 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 1000ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in3 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 1500ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in4 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 2000ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in5 {
|
||||
transition: linear;
|
||||
transform: perspective(300px) rotateY(-2deg);
|
||||
animation: drop-in 1s ease 100ms backwards;
|
||||
animation-delay: 1300ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in6 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 3000ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in7 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 3200ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
.drop-in8 {
|
||||
transition: linear;
|
||||
animation: drop-in 1s ease 200ms backwards;
|
||||
animation-delay: 4000ms; /* Add a 500ms delay before starting the animation */
|
||||
}
|
||||
|
||||
@keyframes drop-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-100px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translate(0px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.even {
|
||||
border-radius: 2rem;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,221 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap'); /* Nunito */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap'); /* Kanit */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); /* Poppins */
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 0;
|
||||
}
|
||||
/* ONLY CHANGE THESE COLORS */
|
||||
:root {
|
||||
--background: #111111;
|
||||
--secondary-background: #151515;
|
||||
--main-color: #850000;
|
||||
--main-hover-color: #258efe;
|
||||
--discord-col: #7289DA;
|
||||
--paypal: #253B80;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
/* custom colors for html code */
|
||||
.bg {
|
||||
background-color: var(--background);
|
||||
}
|
||||
.bgGreen {
|
||||
background-color: #68FF19; /* You can replace 'green' with your desired green color */
|
||||
}
|
||||
.transBg {
|
||||
background-color: rgba(10, 11, 12, 0.3);
|
||||
}
|
||||
.dg {
|
||||
background-color: var(--secondary-background);
|
||||
}
|
||||
.bgCol {
|
||||
background-color: var(--main-color);
|
||||
}
|
||||
.bgTrans {
|
||||
background-color: rgba(37, 142, 254, 0.5);
|
||||
}
|
||||
.bgCol-hover:hover {
|
||||
background-color: var(--main-hover-color);
|
||||
}
|
||||
.textCol {
|
||||
color: var(--main-color);
|
||||
}
|
||||
.textCol-hover {
|
||||
transition: 0.3s linear;
|
||||
}
|
||||
.textCol-hover:hover {
|
||||
color: var(--main-color);
|
||||
}
|
||||
.textPaypal {
|
||||
color: var(--paypal);
|
||||
}
|
||||
.dcBg {
|
||||
background-color: var(--discord-col);
|
||||
}
|
||||
|
||||
|
||||
.colShwHvr {
|
||||
box-shadow: 0px 0px 2px 1px var(--background);
|
||||
transition: 0.3s linear;
|
||||
}
|
||||
.colShwHvr-left:hover {
|
||||
box-shadow: 0px 0px 2px 1px var(--main-color);
|
||||
transform: perspective(300px) rotateY(2deg);
|
||||
}
|
||||
.colShwHvr-center:hover {
|
||||
box-shadow: 0px 0px 2px 1px var(--main-color);
|
||||
-webkit-transform: scale(2);
|
||||
transform: scale(1.03);
|
||||
}
|
||||
.colShwHvr-right:hover {
|
||||
box-shadow: 0px 0px 2px 1px var(--main-color);
|
||||
transform: perspective(300px) rotateY(-2deg);
|
||||
}
|
||||
.colShwHvr-right-img:hover {
|
||||
transform: perspective(300px) rotateY(-2deg);
|
||||
}
|
||||
|
||||
|
||||
.brdCol {
|
||||
border-color: var(--main-color);
|
||||
}
|
||||
.brdBg {
|
||||
border-color: var(--background);
|
||||
}
|
||||
.brdDg {
|
||||
border-color: var(--secondary-background);
|
||||
}
|
||||
.discordCol {
|
||||
background-color: var(--discord-col);
|
||||
}
|
||||
.fnt {
|
||||
font-family: 'Nunito Sans', sans-serif;
|
||||
}
|
||||
.fntBold {
|
||||
font-family: 'Kanit', sans-serif;
|
||||
}
|
||||
.fntPoppins {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
.content {
|
||||
max-width: 90rem;
|
||||
margin-inline: auto;
|
||||
}
|
||||
.contentLogin {
|
||||
max-width: 40rem;
|
||||
margin-inline: auto;
|
||||
}
|
||||
.miAuto {
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
.card1 {
|
||||
transform: perspective(300px) rotateY(2deg);
|
||||
transition: 0.3s linear;
|
||||
}
|
||||
.card2 {
|
||||
transform: perspective(300px) rotateY(-2deg);
|
||||
transition: 0.3s linear;
|
||||
}
|
||||
.card3 {
|
||||
transform: perspective(300px) rotateY(2deg);
|
||||
transition: 0.3s linear;
|
||||
}
|
||||
.card4 {
|
||||
transform: perspective(300px) rotateY(-2deg);
|
||||
transition: 0.3s linear;
|
||||
}
|
||||
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
.spin {
|
||||
animation: spin 0.2s linear infinite;
|
||||
}
|
||||
.spin img {
|
||||
overflow-clip-margin: content-box;
|
||||
overflow: clip;
|
||||
}
|
||||
|
||||
|
||||
/* Status Colors */
|
||||
.green {
|
||||
color: #15803d;
|
||||
}
|
||||
.greenTrans {
|
||||
background-color: rgba(21, 128, 61, 0.2);
|
||||
}
|
||||
|
||||
/* Extra */
|
||||
|
||||
.sdwLight {
|
||||
box-shadow: 0px 0px 2px 1px black;
|
||||
}
|
||||
.moidgndnfg {
|
||||
height: 58rem;
|
||||
}
|
||||
.transStore {
|
||||
background-color: rgba(10, 10, 10, 0.7);
|
||||
}
|
||||
.dgmnojdfng {
|
||||
width: 21rem;
|
||||
}
|
||||
.gmodgnodfngdfgg {
|
||||
margin-right: 1.5rem;
|
||||
}
|
||||
.gmodgnodfngdfg {
|
||||
margin-right: 4.55rem;
|
||||
}
|
||||
.dgmnojdfngtryr {
|
||||
width: 35rem;
|
||||
}
|
||||
.dmfgodfng {
|
||||
width: 21rem;
|
||||
}
|
||||
|
||||
|
||||
.typewriter-text {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
animation: typing 3s steps(30, end);
|
||||
}
|
||||
|
||||
@keyframes typing {
|
||||
from {
|
||||
width: 0;
|
||||
}
|
||||
to {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.typewriter-text2 {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
animation: typing 3s steps(30, end);
|
||||
}
|
||||
|
||||
@keyframes typing {
|
||||
from {
|
||||
width: 0;
|
||||
}
|
||||
to {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.customHomeWidthForTwext {
|
||||
width: 40rem;
|
||||
}
|
||||
|
||||
.maxHeight {
|
||||
height: 52rem;
|
||||
}
|
||||
Reference in New Issue
Block a user