submit: time

master
zhizous 2020-04-10 00:17:06 +08:00
parent 3fa476b60d
commit 92a2d2975c
1 changed files with 18 additions and 4 deletions

View File

@ -707,7 +707,13 @@
color: #f4f4f4; color: #f4f4f4;
font-weight: 500; font-weight: 500;
} }
.lock-screen .time .hhmmss,
.lock-screen .time .yyyymmdd,
.lock-screen .lock-content p[lock='lock']{
color: transparent;
background: linear-gradient(to bottom right, blue, white);
-webkit-background-clip: text;
}
.lock-screen .time .hhmmss { .lock-screen .time .hhmmss {
font-size: 64px; font-size: 64px;
letter-spacing: 5px; letter-spacing: 5px;
@ -826,19 +832,27 @@
} }
@keyframes lock-cursor { @keyframes lock-cursor {
0% { 0% {
color: white; color: transparent;
background: linear-gradient(to bottom right, blue, white);
-webkit-background-clip: text;
} }
25% { 25% {
color: transparent; color: transparent;
background: transparent;
} }
50% { 50% {
color: white; color: transparent;
background: linear-gradient(to bottom right, blue, white);
-webkit-background-clip: text;
} }
75% { 75% {
color: transparent; color: transparent;
background: transparent;
} }
100% { 100% {
color: white; color: transparent;
background: linear-gradient(to bottom right, blue, white);
-webkit-background-clip: text;
} }
} }
/**==================锁屏样式 End==================*/ /**==================锁屏样式 End==================*/