mirror of
https://github.com/Hopiu/RandomWallpaperGnome3.git
synced 2026-03-17 06:30:24 +00:00
58 lines
No EOL
920 B
CSS
58 lines
No EOL
920 B
CSS
|
|
.rwg_system_status_icon {
|
|
icon-size: 1em;
|
|
padding: 0 0;
|
|
position: absolute;
|
|
-webkit-animation: spin 4s linear infinite;
|
|
-moz-animation: spin 4s linear infinite;
|
|
animation: spin 4s linear infinite;
|
|
}
|
|
|
|
@-moz-keyframes spin {
|
|
100% {
|
|
-moz-transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes spin {
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.rwg-new-lable {
|
|
font-size: 130%;
|
|
}
|
|
|
|
.rwg-recent-lable {
|
|
font-size: 90%;
|
|
text-align: left;
|
|
border: 0;
|
|
}
|
|
|
|
.rwg-history-index {
|
|
text-align: left;
|
|
padding-top: .35em;
|
|
font-size: 130%;
|
|
font-weight: lighter;
|
|
}
|
|
|
|
.rwg-history-date {
|
|
font-size: 100%;
|
|
}
|
|
|
|
.rwg-history-time {
|
|
font-size: 100%;
|
|
font-weight: lighter;
|
|
}
|
|
|
|
.rwg-history-element-content {
|
|
min-height: 300px;
|
|
} |