2022-02-04 21:29:00 +08:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-02-05 19:22:27 +08:00
|
|
|
body {
|
2022-02-04 21:29:00 +08:00
|
|
|
background: linear-gradient(to right bottom, #fbc2eb 0%, #a6c1ee 51%, #fbc2eb 100%);
|
|
|
|
}
|
2022-02-05 19:22:27 +08:00
|
|
|
#popup {
|
|
|
|
min-height: 450px;
|
|
|
|
width: 300px;
|
|
|
|
}
|
2022-02-04 21:29:00 +08:00
|
|
|
#popup header {
|
|
|
|
width: inherit;
|
2022-02-09 16:45:45 +08:00
|
|
|
height: 40px;
|
2022-02-04 21:29:00 +08:00
|
|
|
background: linear-gradient(to right, #f6d365 0%, #fda085 51%, #f6d365 100%);
|
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup header #logo {
|
2022-02-04 21:29:00 +08:00
|
|
|
height: inherit;
|
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup header #weather {
|
|
|
|
float: right;
|
|
|
|
height: 100%;
|
|
|
|
line-height: 40px;
|
2022-02-09 19:20:00 +08:00
|
|
|
margin-right: 10px;
|
2022-02-09 19:04:27 +08:00
|
|
|
}
|
|
|
|
#popup header #weather #weatherSite {
|
2022-02-09 19:20:00 +08:00
|
|
|
font-size: 13px;
|
2022-02-09 19:04:27 +08:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
#popup header #weather #svg_w {
|
2022-02-09 19:20:00 +08:00
|
|
|
height: 15px;
|
|
|
|
vertical-align: text-bottom;
|
2022-02-09 19:04:27 +08:00
|
|
|
}
|
|
|
|
#popup header #weather #weatherText {
|
2022-02-09 19:20:00 +08:00
|
|
|
font-size: 13px;
|
2022-02-09 19:04:27 +08:00
|
|
|
}
|
|
|
|
#popup header #weather #weatherTemp {
|
2022-02-09 19:20:00 +08:00
|
|
|
font-size: 13px;
|
2022-02-09 19:04:27 +08:00
|
|
|
}
|
2022-02-09 16:45:45 +08:00
|
|
|
#popup #back {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 54px;
|
|
|
|
left: 10px;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
background-color: transparent;
|
|
|
|
border-top: 2px solid #fff;
|
|
|
|
border-left: 2px solid #fff;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 12px;
|
2022-02-09 16:45:45 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #btnScreenshot,
|
|
|
|
#popup #article #buttons #transform {
|
2022-02-09 16:45:45 +08:00
|
|
|
float: left;
|
2022-02-09 19:04:27 +08:00
|
|
|
top: 1px;
|
|
|
|
right: 5px;
|
|
|
|
width: 90px;
|
|
|
|
height: 40px;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 500;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: #71b0f3;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #btnScreenshot:hover {
|
|
|
|
background-color: #6FC6FF;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #btnScreenshot:active {
|
|
|
|
transform: translate(0px, 1px);
|
|
|
|
box-shadow: 0px 1px 0px 0px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #transform {
|
|
|
|
margin-left: 10px;
|
|
|
|
background-color: #71b0f3;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #transform:hover {
|
|
|
|
background-color: #6FC6FF;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #transform:active {
|
|
|
|
transform: translate(0px, 1px);
|
|
|
|
box-shadow: 0px 1px 0px 0px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #clock {
|
|
|
|
float: left;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-right: 30px;
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
background-color: #F7BAEF;
|
2022-02-04 21:29:00 +08:00
|
|
|
border-radius: 50%;
|
2022-02-09 19:04:27 +08:00
|
|
|
text-align: center;
|
|
|
|
line-height: 40px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 12px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article #buttons #clock:active {
|
|
|
|
transform: translate(0px, 1px);
|
|
|
|
box-shadow: 0px 1px 0px 0px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article .setting {
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 12px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article .setting ul li {
|
2022-02-09 19:20:00 +08:00
|
|
|
margin: 7px 5px;
|
2022-02-09 19:04:27 +08:00
|
|
|
height: 45px;
|
2022-02-09 19:20:00 +08:00
|
|
|
border-radius: 25px;
|
|
|
|
background: #ffffffc9;
|
|
|
|
padding: 0 1px 0 12px;
|
2022-02-04 21:29:00 +08:00
|
|
|
}
|
2022-02-09 19:04:27 +08:00
|
|
|
#popup #article .setting ul li span {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 45px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button {
|
2022-02-05 13:43:37 +08:00
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
top: 6px;
|
|
|
|
right: 6px;
|
|
|
|
width: 66px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 100px;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .checkbox {
|
2022-02-05 13:43:37 +08:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .knobs,
|
|
|
|
#popup #article .setting ul li .setting-item .button .layer {
|
2022-02-05 13:43:37 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .knobs {
|
2022-02-05 13:43:37 +08:00
|
|
|
z-index: 2;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .layer {
|
2022-02-05 13:43:37 +08:00
|
|
|
border-radius: 100px;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #ebf7fc;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .knobs::before {
|
2022-02-05 13:43:37 +08:00
|
|
|
content: "YES";
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 34px;
|
|
|
|
width: 20px;
|
|
|
|
height: 10px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 9px 4px;
|
|
|
|
background-color: #03a9f4;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .checkbox:checked + .knobs:before {
|
2022-02-05 13:43:37 +08:00
|
|
|
content: "NO";
|
|
|
|
left: 3px;
|
|
|
|
background-color: #f44336;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .checkbox:checked ~ .layer {
|
2022-02-05 13:43:37 +08:00
|
|
|
background-color: #fcebeb;
|
|
|
|
}
|
2022-02-09 19:20:00 +08:00
|
|
|
#popup #article .setting ul li .setting-item .button .knobs,
|
|
|
|
#popup #article .setting ul li .setting-item .button .knobs:before,
|
|
|
|
#popup #article .setting ul li .setting-item .button .layer {
|
2022-02-05 13:43:37 +08:00
|
|
|
transition: 0.3s ease all;
|
|
|
|
}
|