site-manual-notifier/static/css/control.css

33 lines
510 B
CSS
Raw Normal View History

2020-07-05 06:43:38 +00:00
header {
display: none;
}
main.pb7>div>article {
padding-top: 0px;
}
2020-07-03 06:49:20 +00:00
2020-07-05 06:43:38 +00:00
.black-border {
border: solid black 1px;
}
.reveal-on-hover, .reveal-on-hover>* {
transition: all 1000ms ease-in-out;
}
.reveal-on-hover:hover {
background-color: transparent;
}
.reveal-on-hover:hover>* {
opacity: 1;
}
.reveal-on-hover:not(:hover) {
background-color: black;
}
.reveal-on-hover:not(:hover)>* {
opacity: 0;
}
.pixelated {
image-rendering: pixelated;
image-rendering: crisp-edges;
}