mirror of
https://github.com/MrEidam/bigredbutton.git
synced 2026-04-17 15:43:31 +00:00
Version 41 - Settings
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
|
||||
body {
|
||||
body{
|
||||
user-select: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@@ -16,7 +16,7 @@ body {
|
||||
#logclick{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
top: 40px;
|
||||
top: 60px;
|
||||
left: 50%;
|
||||
text-align: center;
|
||||
transform: translate(-50%,0);
|
||||
@@ -63,7 +63,7 @@ body {
|
||||
|
||||
.menu-container{
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
top: 50px;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 300px;
|
||||
|
||||
152
css/sett.css
Normal file
152
css/sett.css
Normal file
@@ -0,0 +1,152 @@
|
||||
@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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Menu */
|
||||
|
||||
.menu-container{
|
||||
position: fixed;
|
||||
top: 50px;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 300px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: 'Poppins';
|
||||
z-index: 500;
|
||||
}
|
||||
.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;
|
||||
/* By MrEidam */
|
||||
}
|
||||
.button.expand{
|
||||
width: 100%;
|
||||
}
|
||||
.fas.expand:before{
|
||||
content: '\f00d';
|
||||
}
|
||||
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;
|
||||
padding: 8px 20px;
|
||||
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%;
|
||||
/* By MrEidam */
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul li:hover a{
|
||||
color: #44dd44;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar{
|
||||
background: transparent;
|
||||
width: 5px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb{
|
||||
background: linear-gradient(transparent, #00ec00);
|
||||
border-radius: 0 0 0.5rem 0.5rem;
|
||||
}
|
||||
@@ -10,7 +10,6 @@
|
||||
|
||||
body {
|
||||
font-size: 15pt;
|
||||
/*background: linear-gradient(#009000, black);*/
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
@@ -25,7 +24,7 @@ body {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
top: 0;
|
||||
border-radius: 0 0 90px 90px;
|
||||
background: radial-gradient(125% 100% at 50% 0%,#11ABFF 20%,transparent 70%);
|
||||
/* By MrEidam */
|
||||
}
|
||||
#logclick{
|
||||
@@ -138,10 +137,6 @@ button{
|
||||
border: none;
|
||||
filter: drop-shadow(8px 6px 4px #555);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@media only screen and (max-width: 555px){
|
||||
.row{
|
||||
flex-direction: column;
|
||||
@@ -154,6 +149,8 @@ button{
|
||||
}
|
||||
|
||||
|
||||
/* Menu */
|
||||
|
||||
.menu-container{
|
||||
position: fixed;
|
||||
top: 50px;
|
||||
|
||||
@@ -20,7 +20,7 @@ body {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
top: 0;
|
||||
border-radius: 0 0 90px 90px;
|
||||
background: radial-gradient(125% 100% at 50% 0%,#efff11 20%,transparent 70%);
|
||||
}
|
||||
|
||||
/* By MrEidam */
|
||||
|
||||
Reference in New Issue
Block a user