mirror of
https://github.com/khairul169/honey.git
synced 2025-04-28 14:59:32 +07:00
166 lines
2.3 KiB
CSS
166 lines
2.3 KiB
CSS
.settings {
|
|
margin: 32px auto;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.setting {
|
|
background: var(--bg2);
|
|
margin: 8px;
|
|
padding: 20px;
|
|
display: flex;
|
|
cursor: pointer;
|
|
border-radius: 16px;
|
|
align-items: center;
|
|
text-align: left;
|
|
transition: background .3s;
|
|
}
|
|
|
|
.setting i {
|
|
margin-right: 14px;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.setting .name {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.setting .desc {
|
|
opacity: .6;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.setting .switch {
|
|
position: relative;
|
|
width: 44px;
|
|
min-width: 44px;
|
|
height: 24px;
|
|
background: #8886;
|
|
border-radius: 100px;
|
|
margin: 0 4px 0 auto;
|
|
transition: border .4s, background .3s;
|
|
}
|
|
|
|
.setting .switch:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px;
|
|
background: var(--color);
|
|
left: 4px;
|
|
top: 50%;
|
|
border-radius: 10px;
|
|
transform: translateY(-50%);
|
|
transition: left .2s, background .3s;
|
|
}
|
|
|
|
.setting.checked .switch {
|
|
background-color: #68F;
|
|
border-color: #68F;
|
|
}
|
|
|
|
.setting.checked .switch:after {
|
|
left: calc(100% - 20px);
|
|
}
|
|
|
|
#no-cookies {
|
|
margin: 24px 0 -8px;
|
|
color: #F60;
|
|
}
|
|
|
|
#no-cookies.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.subpages {
|
|
position: relative;
|
|
transform: translateX(calc(var(--id) * -100%));
|
|
transition: transform .4s, height .4s;
|
|
}
|
|
|
|
.subpages > div {
|
|
position: absolute;
|
|
left: calc(var(--n) * 100%);
|
|
width: 100%;
|
|
}
|
|
|
|
#report-boxes {
|
|
display: flex;
|
|
text-align: left;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#report-boxes i::after {
|
|
color: var(--color);
|
|
text-shadow: 0 0 48px var(--color);
|
|
padding: 16px;
|
|
font-size: 28px;
|
|
border-radius: 32px;
|
|
}
|
|
|
|
#report-boxes .icon-https::after {
|
|
--color: #0C7;
|
|
content: "lock";
|
|
}
|
|
|
|
#report-boxes .icon-rocket::after {
|
|
--color: #68F;
|
|
content: "rocket_launch";
|
|
}
|
|
|
|
#report-boxes .prewarn i::after {
|
|
--color: #EA0;
|
|
}
|
|
|
|
#report-boxes .warn i::after {
|
|
--color: #F60;
|
|
}
|
|
|
|
#report-boxes .error i::after {
|
|
--color: #F22;
|
|
}
|
|
|
|
#report-boxes > div {
|
|
display: flex;
|
|
width: 50%;
|
|
min-width: 256px;
|
|
flex: 1;
|
|
padding: 20px 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
#report-boxes .title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
#report-boxes .subtitle {
|
|
opacity: .6;
|
|
}
|
|
|
|
.security {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
max-width: 600px;
|
|
padding: 24px;
|
|
margin: 120px auto 80px;
|
|
text-align: right;
|
|
}
|
|
|
|
.security i {
|
|
font-size: 80px;
|
|
}
|
|
|
|
.security #report-score {
|
|
font-size: 48px;
|
|
}
|
|
|
|
.security #report {
|
|
opacity: .6;
|
|
}
|
|
|
|
.score::after {
|
|
content: "%";
|
|
font-size: 18px;
|
|
}
|