mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-02-24 13:30:02 +08:00
60 lines
834 B
CSS
60 lines
834 B
CSS
|
body {
|
||
|
color: white;
|
||
|
background-color: #125bdb;
|
||
|
font-family: Verdana, Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
#content-wrap {
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
margin-top: 100px;
|
||
|
}
|
||
|
|
||
|
#footer {
|
||
|
width: 98%;
|
||
|
position: fixed;
|
||
|
bottom: 0px;
|
||
|
height: 40px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#empty-space {
|
||
|
height: 40px;
|
||
|
/* Same height as footer */
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
a:hover,
|
||
|
a:active,
|
||
|
a:visited {
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.loading:after {
|
||
|
content: " .";
|
||
|
animation: dots 1s steps(5, end) infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes dots {
|
||
|
|
||
|
0%,
|
||
|
20% {
|
||
|
color: rgba(0, 0, 0, 0);
|
||
|
text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
|
||
|
40% {
|
||
|
color: white;
|
||
|
text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
|
||
|
60% {
|
||
|
text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
|
||
|
80%,
|
||
|
100% {
|
||
|
text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;
|
||
|
}
|
||
|
}
|