Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1 ano atrás
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. }