Angular job portal app
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

Quiz.module.scss 2.9 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .quizContainer {
  2. .upfold {
  3. height: 40vh;
  4. background-color: #151515;
  5. position: relative;
  6. &::after {
  7. content: "";
  8. display: block;
  9. width: 0;
  10. height: 0;
  11. border-left: 68vw solid #262626;
  12. border-right: 75vw solid white;
  13. border-top: 3rem solid transparent;
  14. position: absolute;
  15. bottom: 0;
  16. left: 0;
  17. }
  18. .header {
  19. display: flex;
  20. align-items: center;
  21. justify-content: space-between;
  22. width: 54.5%;
  23. margin-left: auto;
  24. height: 10vh;
  25. h4 {
  26. color: white;
  27. font-size: 2.4rem;
  28. font-weight: 200;
  29. letter-spacing: 0.024rem;
  30. margin-top: 0;
  31. align-self: flex-end;
  32. }
  33. ion-icon {
  34. color: white;
  35. margin-right: 3rem;
  36. width: 3rem;
  37. height: 4rem;
  38. align-self: flex-end;
  39. }
  40. }
  41. // .questionHolder {
  42. // display: flex;
  43. // flex-direction: column;
  44. // align-items: center;
  45. // justify-content: space-between;
  46. // text-align: center;
  47. // color: white;
  48. // width: 90%;
  49. // margin: 0 auto;
  50. // height: 27vh;
  51. // background-image: url("../../assets/icons/desktop-particles.svg");
  52. // background-position: center;
  53. // background-repeat: no-repeat;
  54. // background-size: 150% 150%;
  55. // .questionNumber {
  56. // font-size: 1.3rem;
  57. // font-weight: 600;
  58. // }
  59. // .question {
  60. // font-size: 1.8rem;
  61. // font-weight: 300;
  62. // }
  63. // .quizTimer {
  64. // .border {
  65. // width: 6rem;
  66. // height: 6rem;
  67. // border-radius: 50%;
  68. // border: 0.2rem solid #6BD534;
  69. // .time {
  70. // margin-top: 1.8rem;
  71. // font-size: 1.4rem;
  72. // }
  73. // }
  74. // }
  75. // }
  76. }
  77. .quizOptions {
  78. height: 60vh;
  79. display: flex;
  80. flex-direction: column;
  81. align-items: center;
  82. justify-content: space-around;
  83. .options {
  84. width: 90%;
  85. margin: 0 auto;
  86. }
  87. .button {
  88. text-decoration: none;
  89. width: 100%;
  90. ion-button {
  91. --background: #DDDDDD;
  92. width: 90%;
  93. margin: 0 auto;
  94. }
  95. }
  96. .active {
  97. ion-button {
  98. --background: var(--primary-button-color);
  99. }
  100. }
  101. }
  102. }