Angular LMS app
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Repozitorijs ir arhivēts. Tam var aplūkot failus un to var klonēt, bet nevar iesūtīt jaunas izmaiņas, kā arī atvērt jaunas problēmas/izmaiņu pieprasījumus.
 
 
 
 

57 rindas
1.1 KiB

  1. /* You can add global styles to this file, and also import other style files */
  2. * {
  3. font-family: 'Roboto', sans-serif;
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. letter-spacing: 0.5px;
  8. outline: none;
  9. line-height: 1.4;
  10. }
  11. :root {
  12. --black: #1a1a1a;
  13. --ash-black: #282828;
  14. --dark-grey: #4d4d4d;
  15. --light-grey: #999999;
  16. --teal: #06c4a8;
  17. --green: #8cc63f;
  18. --teal-green: #08c17e;
  19. --danger: #ea8b8b;
  20. --danger-dark: #d65f5f;
  21. }
  22. .confirmation-popup {
  23. position: fixed;
  24. left: 80%;
  25. height: 100vh;
  26. width: 100vw;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. z-index: 2;
  31. left: 0;
  32. top: 0;
  33. background-color: rgba(black, 0.8);
  34. opacity: 0;
  35. pointer-events: none;
  36. transition: opacity 0.3s;
  37. &.active {
  38. opacity: 1;
  39. pointer-events: all;
  40. app-confirmation-popup {
  41. opacity: 1;
  42. transform: translateY(0vh);
  43. }
  44. }
  45. app-confirmation-popup {
  46. opacity: 0;
  47. transform: translateY(20vh);
  48. transition: opacity 0.3s, transform 0.3s;
  49. }
  50. }