specialization-selection.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. $specializationSelectionClass: 'specialization-selection';
  2. .#{$specializationSelectionClass} {
  3. &__container {
  4. background: #ffffff;
  5. box-sizing: border-box;
  6. width: calc(100% - 26px);
  7. padding: 10px;
  8. //max-height: 800px;
  9. //display: flex;
  10. //flex-direction: column;
  11. //flex-wrap: wrap;
  12. //align-items: flex-start;
  13. column-count: 3;
  14. column-gap: 10px;
  15. &:before,
  16. &:after {
  17. content: '';
  18. display: block;
  19. clear: both;
  20. }
  21. }
  22. &__group {
  23. //width: calc(33.333% - 10px);
  24. margin: 5px 5px 5px 5px;
  25. display: block;
  26. //float: left;
  27. &:nth-child(3n) {
  28. /*width: 33.333%;
  29. margin-right: 0;*/
  30. }
  31. }
  32. &__list {
  33. max-height: 125px;
  34. overflow: hidden;
  35. display: block;
  36. &-item {
  37. display: flex;
  38. flex-direction: row;
  39. justify-content: flex-start;
  40. padding: 5px;
  41. label {
  42. display: block;
  43. font-size: 13px;
  44. font-family: $fontopensans;
  45. }
  46. &--group-header {
  47. background: #ebebeb;
  48. padding: 7px 5px;
  49. label {
  50. display: block;
  51. font-family: $fontcuprum;
  52. font-size: 17px;
  53. }
  54. }
  55. }
  56. }
  57. &__checkbox {
  58. -webkit-appearance: checkbox;
  59. -moz-appearance: checkbox;
  60. appearance: checkbox;
  61. display: block;
  62. width: 13px !important;
  63. }
  64. &__checkbox-label {
  65. display: block;
  66. width: calc(100% - 13px - 5px);
  67. margin-left: 5px;
  68. }
  69. }