app.css 758 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #out {
  2. height: 100vh;
  3. width: 100vw
  4. }
  5. #avalonia-splash {
  6. position: relative;
  7. height: 100%;
  8. width: 100%;
  9. color: whitesmoke;
  10. background: #171C2C;
  11. font-family: 'Nunito', sans-serif;
  12. background-position: center;
  13. background-size: cover;
  14. background-repeat: no-repeat;
  15. }
  16. #avalonia-splash a{
  17. color: whitesmoke;
  18. text-decoration: none;
  19. }
  20. .center {
  21. display: flex;
  22. justify-content: center;
  23. height: 250px;
  24. }
  25. .splash-close {
  26. animation: slide 0.5s linear 1s forwards;
  27. }
  28. @keyframes slide {
  29. 0% {
  30. top: 0%;
  31. }
  32. 50% {
  33. opacity: 80%;
  34. }
  35. 100% {
  36. top: 100%;
  37. overflow: hidden;
  38. opacity: 0;
  39. display: none;
  40. visibility: collapse;
  41. }
  42. }