mirror of
https://github.com/sascha-hemi/homeassistant-desktop.git
synced 2026-03-21 05:06:33 +01:00
fixes #4 fixes #5 fixes #6 fixes #7 may fix #3 added: - availability check / error page - auto switching to next available instance for multiple instances + linting / formatting
43 lines
681 B
CSS
43 lines
681 B
CSS
svg {
|
|
width: 100px;
|
|
display: block;
|
|
margin: 40px auto 0;
|
|
}
|
|
.path {
|
|
stroke-dasharray: 1000;
|
|
stroke-dashoffset: 0;
|
|
}
|
|
.path.circle {
|
|
-webkit-animation: dash 0.9s ease-in-out;
|
|
animation: dash 0.9s ease-in-out;
|
|
}
|
|
.path.line {
|
|
stroke-dashoffset: 1000;
|
|
-webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
|
|
animation: dash 0.9s 0.35s ease-in-out forwards;
|
|
}
|
|
p {
|
|
text-align: center;
|
|
margin: 20px 0 60px;
|
|
font-size: 1.1em;
|
|
}
|
|
p.error {
|
|
color: #d06079;
|
|
}
|
|
@-webkit-keyframes dash {
|
|
0% {
|
|
stroke-dashoffset: 1000;
|
|
}
|
|
100% {
|
|
stroke-dashoffset: 0;
|
|
}
|
|
}
|
|
@keyframes dash {
|
|
0% {
|
|
stroke-dashoffset: 1000;
|
|
}
|
|
100% {
|
|
stroke-dashoffset: 0;
|
|
}
|
|
}
|