Gem Viewer. General cleanup

This commit is contained in:
color.diff=auto
2021-05-15 01:23:25 -06:00
parent 2cb355ab47
commit f4b232049e
1217 changed files with 641 additions and 971 deletions

View File

@@ -571,10 +571,4 @@ $(document).ready(function () {
});

View File

@@ -110,10 +110,11 @@ option {
border: 1px solid #ddd;
margin: 30px auto;
padding: 10px;
background: #fafaff;
background: #eee;
}
body {
background: url(/img/bg.jpg);
background-size: cover;
background-attachment: fixed;
font-family:lato;
@@ -155,7 +156,7 @@ select {
#search {
background: none !important;
background: white !important;
}
select::-ms-expand {
display: none; /* Remove default arrow in Internet Explorer 10 and 11 */
@@ -278,3 +279,23 @@ pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
color: #4169E1; /* Magic color*/
}
@-webkit-keyframes psychedelic {
0% {
-webkit-filter: hue-rotate(0deg) saturate(2) invert(0);
}
50% {
-webkit-filter: hue-rotate(360deg) saturate(2) invert(.25);
}
100% {
-webkit-filter: hue-rotate(0deg) saturate(2) invert(0);
}
}
.psychedelic {
-webkit-animation: psychedelic linear 10s infinite;
-moz-animation: psychedelic linear 10s infinite;
-o-animation: psychedelic linear 10s infinite;
animation: psychedelic linear 10s infinite;
}