You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 line
1.3KB

  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. /* HTML styles for the splash screen */
  8. .highlight {
  9. color: white;
  10. font-size: 2.5rem;
  11. display: block;
  12. }
  13. .purple {
  14. color: #8b44ac;
  15. }
  16. .icon {
  17. opacity: 0.05;
  18. height: 35%;
  19. width: 35%;
  20. position: absolute;
  21. background-repeat: no-repeat;
  22. right: 0px;
  23. bottom: 0px;
  24. margin-right: 3%;
  25. margin-bottom: 5%;
  26. z-index: 5000;
  27. background-position: right bottom;
  28. pointer-events: none;
  29. }
  30. #avalonia-splash a {
  31. color: whitesmoke;
  32. text-decoration: none;
  33. }
  34. .center {
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. height: 100vh;
  39. }
  40. #avalonia-splash {
  41. position: relative;
  42. height: 100%;
  43. width: 100%;
  44. color: whitesmoke;
  45. background: #1b2a4e;
  46. font-family: 'Nunito', sans-serif;
  47. background-position: center;
  48. background-size: cover;
  49. background-repeat: no-repeat;
  50. justify-content: center;
  51. align-items: center;
  52. }
  53. .splash-close {
  54. animation: fadeout 0.25s linear forwards;
  55. }
  56. @keyframes fadeout {
  57. 0% {
  58. opacity: 100%;
  59. }
  60. 100% {
  61. opacity: 0;
  62. visibility: collapse;
  63. }
  64. }