free-code
Version:
Makes free code for discord.js command/bots
320 lines (266 loc) • 5.54 kB
CSS
.tbtn {
height: 50px;
width: 120px;
border-radius: 8px;
border: 1px solid #24252A;
color: white;
font-family: 'RocknRoll One', sans-serif;
font-size: 100%;
background-color: #24252A;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.tbtndisc {
height: 50px;
width: 100px;
border-radius: 8px;
border: 1px solid #24252A;
color: white;
font-family: 'RocknRoll One', sans-serif;
font-size: 100%;
background-color: #24252A;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
position: absolute;
top: 0;
right: 0;
}
.tbtn span {
cursor: pointer;
position: relative;
transition: 0.5s;
}
.tbtn:hover span {
color: rgb(211, 246, 9);
}
.btn {
color: white;
font-family: 'RocknRoll One', sans-serif;
border-radius: 8px;
height: 50px;
width: 150px;
font-size: 115%;
text-align: center;
background-color: #24252A;
border: 1px solid rgb(3, 55, 151);
margin: 5px;
}
.buttons {
text-align: center;
}
.btn:hover {
background-color: #24252A;
color: white;
cursor: pointer;
}
h1 {
font-family: 'Acme', sans-serif;
font-size: 245%;
font-stretch: ultra-expanded;
color: rgb(100, 166, 241);
text-align: center;
}
h3 {
font-family: 'Acme', sans-serif;
font-size: 212%;
text-align: center;
font-stretch: ultra-expanded;
color: rgb(100, 166, 241);
}
.description {
font-family: 'Acme', sans-serif;
font-size: 165%;
text-align: center;
font-stretch: ultra-expanded;
color: rgb(100, 166, 241);
}
.avatar {
display: block;
margin-left: auto;
margin-right: auto;
border: 4px solid #24252A;
border-radius: 100%;
width: 10%;
height: 10%;
-webkit-transform: -webkit-transform .8s ease-in-out;
transition: transform .8s ease-in-out;
}
.avatar:hover {
-webkit-transform: rotate(360deg);
}
body {
background-color: #24252A;
}
.loader-wrapper {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: #242f3f;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
display: inline-block;
width: 30px;
height: 30px;
position: center;
top: 50%;
/******** <- Remove this line *********/
border: 4px solid #Fff;
animation: loader 2s infinite ease;
}
.loader-inner {
vertical-align: top;
display: inline-block;
width: 100%;
background-color: #fff;
animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(180deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(360deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes loader-inner {
0% {
height: 0%;
}
25% {
height: 0%;
}
50% {
height: 100%;
}
75% {
height: 100%;
}
100% {
height: 0%;
}
}
.pt-10 {
padding-top: 5rem ;
}
.pt-16 {
padding-top: 20rem ;
}
.custom-1 span {
font-family: Material Icons;
float: right;
font-size: 250px;
}
.custom-1 h3 {
padding-top: 60px;
float: left;
width: 40%;
}
.custom-1 p {
color: rgb(255, 255, 255, .55);
width: 40%;
text-align: center;
}
.custom-1 img {
float: right;
position: absolute;
right: 40px;
height: 310px;
width: 540px;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.custom-2 img {
float: left;
width: 540px;
border-radius: 10px;
height: 310px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.custom-2 h3 {
padding-top: 60px;
float: right;
width: 40%;
}
.custom-2 p {
float: right;
text-align: center;
width: 40%;
color: rgb(255, 255, 255, .55);
}
.container {
max-width: 1000px;
}
.align-self-start {
nav-down: auto;
}
@media screen and (max-width: 967px) {
.custom-1 span {
float: none;
display: block;
text-align: center;
}
.pt-10 {
padding-top: 1rem;
}
.pt-16 {
padding-top: 2rem;
}
.custom-1 p {
text-align: center;
width: 100%;
}
.custom-1 h3 {
float: none;
text-align: center;
width: 100%;
}
.custom-2 p {
text-align: center;
float: none;
width: 100%;
}
.custom-2 h3 {
float: none;
text-align: center;
width: 100%;
}
.custom-2 img {
float: none;
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 400px;
height: auto;
}
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px black;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgb(20, 165, 248);
}
.empty-space {
min-height: 1px;
}