app.css 923 B

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