mirror of
https://github.com/MrEidam/bigredbutton.git
synced 2026-04-17 15:43:31 +00:00
80 lines
1.4 KiB
CSS
80 lines
1.4 KiB
CSS
@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;
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
#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: #a33;
|
|
} |