Commit 59a7ce74 by doszhang

dos

parent 863d64f4
......@@ -76,8 +76,31 @@ input::-webkit-input-placeholder {
font-family: 'zkkh';
}
.hand {
animation: hand 2s linear infinite;
-webkit-animation: hand 2s linear infinite;
}
input[name=customize] {
font-size: 22px;
color: #333;
text-align: center;
}
@keyframes hand {
0%,100% {
transform: translateX(-5px);
}
50% {
transform: translateX(5px);
}
}
@-webkit-keyframes hand {
0%,100% {
-webkit-transform: translateX(-5px);
}
50% {
-webkit-transform: translateX(5px);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment