mirror of
https://github.com/MrEidam/bigredbutton.git
synced 2026-04-17 15:43:31 +00:00
147 lines
2.7 KiB
CSS
147 lines
2.7 KiB
CSS
@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;
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
body{
|
|
user-select: none;
|
|
background-color: #333;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
#jonathan{
|
|
position: fixed;
|
|
z-index: 500;
|
|
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);
|
|
}
|
|
main section button{
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 0.5rem;
|
|
border: none;
|
|
filter: drop-shadow(10px 10px 14px #444);
|
|
}
|
|
|
|
.sites{
|
|
width: 350px;
|
|
height: 250px;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.sites h2{
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
}
|
|
|
|
.site{
|
|
position: relative;
|
|
width: 150px;
|
|
height: 50px;
|
|
background: var(--cls);
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
border-radius: 6.9px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.site button{
|
|
width: 25px;
|
|
height: 25px;
|
|
border: none;
|
|
background: transparent;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
.site img{
|
|
height: 25px;
|
|
}
|
|
|
|
::-webkit-scrollbar{
|
|
background: transparent;
|
|
width: 5px;
|
|
}
|
|
::-webkit-scrollbar-thumb{
|
|
background: linear-gradient(transparent, #00ec00);
|
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
}
|
|
|
|
/* Ligt NODE */
|
|
@media (prefers-color-scheme: light){
|
|
body{
|
|
background: #ddd;
|
|
}
|
|
.item{
|
|
background: #ffefd5;
|
|
color: #000;
|
|
}
|
|
.change{
|
|
background: #8fbc8f;
|
|
color: #fff;
|
|
text-shadow: none;
|
|
}
|
|
h3{
|
|
color: #000;
|
|
text-shadow: none;
|
|
}
|
|
#sites{
|
|
color: #000;
|
|
text-shadow: none;
|
|
}
|
|
}
|
|
|
|
/* DARJ MODE */
|
|
@media (prefers-color-scheme: dark){
|
|
body{
|
|
background: #333;
|
|
}
|
|
.item{
|
|
background: #666055;
|
|
color: #fff;
|
|
}
|
|
.change{
|
|
background: #008b8b;
|
|
color: #fff;
|
|
text-shadow: 2px 2px 4px #000;
|
|
}
|
|
h3{
|
|
color: #eee;
|
|
text-shadow: 2px 2px 4px #000;
|
|
}
|
|
#sites{
|
|
color: #fff;
|
|
text-shadow: 2px 2px 4px #000;
|
|
}
|
|
} |