specialization-selection.scss 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. display: block;
  9. //max-height: 800px;
  10. //display: flex;
  11. //flex-direction: column;
  12. //flex-wrap: wrap;
  13. //align-items: flex-start;
  14. column-count: 3;
  15. column-gap: 10px;
  16. &:before,
  17. &:after {
  18. content: '';
  19. display: block;
  20. clear: both;
  21. }
  22. }
  23. &__group {
  24. //width: calc(33.333% - 10px);
  25. margin: 5px 5px 5px 5px;
  26. display: block;
  27. //float: left;
  28. &:nth-child(3n) {
  29. /*width: 33.333%;
  30. margin-right: 0;*/
  31. }
  32. }
  33. &__list {
  34. max-height: 125px;
  35. overflow: hidden;
  36. display: block;
  37. &-item {
  38. display: flex;
  39. flex-direction: row;
  40. justify-content: flex-start;
  41. padding: 5px;
  42. label {
  43. display: block;
  44. font-size: 13px;
  45. font-family: $fontopensans;
  46. }
  47. &--group-header {
  48. background: #ebebeb;
  49. padding: 7px 5px;
  50. label {
  51. display: block;
  52. font-family: $fontcuprum;
  53. font-size: 17px;
  54. }
  55. }
  56. }
  57. }
  58. &__checkbox {
  59. -webkit-appearance: checkbox;
  60. -moz-appearance: checkbox;
  61. appearance: checkbox;
  62. display: block;
  63. width: 13px !important;
  64. }
  65. &__checkbox-label {
  66. display: block;
  67. width: calc(100% - 13px - 5px);
  68. margin-left: 5px;
  69. }
  70. &__select-button {
  71. display: block;
  72. font-family: $fontcuprum;
  73. font-size: 17px;
  74. color: #fff;
  75. background-color: #004D7B;
  76. width: calc(100% - 26px);
  77. padding: 10px;
  78. cursor: pointer;
  79. &:hover {
  80. background-color: #006dae;
  81. }
  82. }
  83. }