Site updated: 2022-11-08 15:59:28

This commit is contained in:
llbzow
2022-11-08 15:59:28 +00:00
parent 267e5f619e
commit 04da3ef78c
23 changed files with 880 additions and 92 deletions

View File

@@ -1169,7 +1169,7 @@ pre .javascript .function {
}
.links-of-author a::before,
.links-of-author span.exturl::before {
background: #ffadff;
background: #eb8e7a;
border-radius: 50%;
content: ' ';
display: inline-block;
@@ -1963,6 +1963,41 @@ pre .javascript .function {
#qr p {
text-align: center;
}
#qr > div:hover p {
animation: roll 0.1s infinite linear;
}
@-moz-keyframes roll {
from {
transform: rotateZ(30deg);
}
to {
transform: rotateZ(-30deg);
}
}
@-webkit-keyframes roll {
from {
transform: rotateZ(30deg);
}
to {
transform: rotateZ(-30deg);
}
}
@-o-keyframes roll {
from {
transform: rotateZ(30deg);
}
to {
transform: rotateZ(-30deg);
}
}
@keyframes roll {
from {
transform: rotateZ(30deg);
}
to {
transform: rotateZ(-30deg);
}
}
.category-all-page .category-all-title {
text-align: center;
}