選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

mcq.component.scss 883 B

4年前
123456789101112131415161718192021222324252627282930313233343536373839
  1. @import '../../colors';
  2. h3 {
  3. color: white;
  4. font-weight: 500;
  5. letter-spacing: 0.5px;
  6. line-height: 1.5;
  7. }
  8. .options {
  9. margin: 30px auto;
  10. button {
  11. border: 3px solid rgba($sea-blue, 0.3);
  12. display: flex;
  13. align-items: center;
  14. justify-content: space-between;
  15. height: 50px;
  16. color: white;
  17. font-size: 1.1rem;
  18. border-radius: 10px;
  19. background-color: transparent;
  20. margin: 15px 0;
  21. width: 100%;
  22. padding: 0 15px;
  23. }
  24. ion-checkbox {
  25. --background: transparent;
  26. --border-color: #2ea9f586;
  27. --border-width: 2px;
  28. --border-color-checked: var(--ion-color-primary);
  29. --background-checked: var(--ion-color-primary);
  30. --size: 25px;
  31. --checkmark-width: 2px;
  32. --checkmark-color: white;
  33. pointer-events: none;
  34. }
  35. }