yumechi-no-kuni/src/client/app/init.css

58 lines
742 B
CSS
Raw Normal View History

@charset "utf-8";
2017-05-23 18:52:17 -05:00
/**
* Boot screen style
*/
2017-02-19 03:21:03 -06:00
html {
2019-07-09 03:01:08 -05:00
font-family: Roboto, HelveticaNeue, Arial, sans-serif;
2017-02-19 03:21:03 -06:00
}
2017-02-21 12:13:19 -06:00
body > noscript {
2017-02-19 03:21:03 -06:00
position: fixed;
2017-02-21 12:13:19 -06:00
z-index: 2;
2017-02-19 03:21:03 -06:00
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
background: #fff;
}
2017-02-21 12:13:19 -06:00
body > noscript > p {
2017-02-19 03:21:03 -06:00
display: block;
margin: 32px;
font-size: 2em;
color: #555;
}
2017-02-21 12:13:19 -06:00
#ini {
2017-02-19 03:21:03 -06:00
position: fixed;
2017-02-21 12:13:19 -06:00
z-index: 1;
2017-02-19 03:21:03 -06:00
top: 0;
left: 0;
width: 100%;
height: 100%;
2018-09-28 06:39:32 -05:00
background: var(--bg);
2017-02-19 03:21:03 -06:00
cursor: wait;
}
2018-06-08 20:06:27 -05:00
#ini > svg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 64px;
height: 64px;
animation: ini 0.6s infinite linear;
2017-02-19 03:21:03 -06:00
}
2017-02-21 12:13:19 -06:00
@keyframes ini {
2018-06-08 20:06:27 -05:00
from {
transform: rotate(0deg);
2017-02-19 03:21:03 -06:00
}
2018-06-08 20:06:27 -05:00
to {
transform: rotate(360deg);
2017-02-19 03:21:03 -06:00
}
}