1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #splash {
- position: fixed;
- z-index: 9999;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- background-color: #101010;
- }
- #splash-logo {
- margin-top: 6em;
- color: #ffa000;
- text-align: center;
- }
- #splash-version {
- color: white;
- text-align: center;
- margin-left: 40em;
- }
- #splash-text {
- margin-top: 3em;
- }
- #splash-text p {
- margin: 0 auto;
- font-size: 120%;
- text-align: center;
- white-space: nowrap;
- overflow: hidden;
- transform: translateY(-50%);
- color: white;
- }
- #splash-loader {
- margin-top: 2em;
- text-align: center;
- font-family: Menlo,Consolas,Monaco,monospace;
- font-size: 180%;
- color: #ffa000;
- }
- /* --- Responsive --- */
- @media (max-width: 1259px) and (min-width: 851px) {
- #splash-logo {
- font-size: 75%;
- }
- }
- @media (max-width: 851px) and (min-width: 504px) {
- #splash-logo {
- margin-top: 10em;
- font-size: 50%;
- }
- }
- @media (max-width: 504px) {
- #splash-logo {
- margin-top: 28em;
- font-size: 34%;
- }
- #splash-text p {
- margin: 0 auto;
- font-size: 80%;
- }
- #splash-loader {
- font-size: 120%;
- }
- }
- /* --- Animation --- */
- .anim-typewriter{
- animation: typewriter 1.6s steps(44) 250ms 1 normal both,
- blinkTextCursor 500ms steps(44) infinite normal;
- }
- @keyframes typewriter{
- from{width: 0;}
- to{width: 24em;}
- }
|