blind.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .wrapper--blind {
  2. padding: 20px;
  3. display: -webkit-flex;
  4. display: -ms-flex;
  5. display: flex;
  6. flex-direction: row;
  7. justify-content: space-between;
  8. }
  9. .blind {
  10. width: 100%;
  11. background: #fff;
  12. display: -webkit-flex;
  13. display: -ms-flex;
  14. display: flex;
  15. flex-direction: row;
  16. display: none;
  17. line-height: 20px;
  18. padding: 0;
  19. margin: 0;
  20. font-size: 20px !important;
  21. padding-bottom: 30px;
  22. font-family: "open_sansregular";
  23. justify-content: flex-start;
  24. align-items: flex-start;
  25. align-content: flex-start;
  26. &__item {
  27. display: -webkit-flex;
  28. display: -ms-flex;
  29. display: flex;
  30. flex-direction: column;
  31. padding: 0;
  32. margin: 0;
  33. font-weight: bold;
  34. justify-content: space-between;
  35. min-height: 100px;
  36. }
  37. &__buttons {
  38. display: -webkit-flex;
  39. display: -ms-flex;
  40. display: flex;
  41. flex-direction: row;
  42. justify-content: flex-start;
  43. align-items: flex-start;
  44. align-content: flex-start;
  45. }
  46. &__link {
  47. padding: 0;
  48. margin: 0;
  49. height: 30px;
  50. border: 1px solid #000000;
  51. border-radius: 3px;
  52. line-height: 30px;
  53. overflow: hidden;
  54. padding: 0 8px;
  55. text-decoration: none !important;
  56. color: #000000;
  57. &--fontsize100 {
  58. font-size: 14px;
  59. }
  60. &--fontsize102 {
  61. font-size: 17px;
  62. }
  63. &--fontsize104 {
  64. font-size: 20px;
  65. }
  66. &--fontsize106 {
  67. font-size: 23px;
  68. }
  69. &--fontsize108 {
  70. font-size: 26px;
  71. }
  72. &--fontsize110 {
  73. font-size: 29px;
  74. }
  75. }
  76. &__buttons {
  77. padding: 0;
  78. margin: 0;
  79. }
  80. }
  81. .imgoff {
  82. display: none !important;
  83. }
  84. .font100 {
  85. font-size: 100%;
  86. }
  87. .font102 {
  88. font-size: 102%;
  89. }
  90. .font104 {
  91. font-size: 104%;
  92. }
  93. .font106 {
  94. font-size: 106%;
  95. }
  96. .font108 {
  97. font-size: 108%;
  98. }
  99. .font110 {
  100. font-size: 110%;
  101. }
  102. .default {
  103. }
  104. .whiteblack,
  105. .whiteblack:hover {
  106. background-image: none;
  107. background: #ffffff;
  108. color: #000000;
  109. }
  110. .blackwhite,
  111. .blackwhite:hover {
  112. background-image: none;
  113. background: #000000;
  114. color: #ffffff;
  115. .blind__link {
  116. border-color: #ffffff;
  117. }
  118. }
  119. .blackwhite:hover a,
  120. .whiteblack:hover a {
  121. text-decoration: underline;
  122. }