Advertisement
nkarmi

Untitled

Jul 16th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. @font-face {
  2. font-family: Roboto;
  3. font-style: normal;
  4. font-weight: 400;
  5. src: url(/fonts/Roboto/Roboto-Regular.ttf);
  6. }
  7.  
  8. * {
  9. font-family: Roboto;
  10. }
  11.  
  12. .left-gray-border {
  13. border-left: 1px solid $color-light-gray;
  14. }
  15.  
  16. .right-gray-border {
  17. border-right: 1px solid $color-light-gray;
  18. }
  19.  
  20. .bottom-gray-border {
  21. border-bottom: 1px solid $color-light-gray;
  22. }
  23.  
  24. .flex-pull-right {
  25. margin-left: auto;
  26. }
  27.  
  28. .flex-column {
  29. display: flex;
  30. flex-flow: column;
  31. }
  32.  
  33. .flex-row {
  34. display: flex;
  35. }
  36.  
  37. .ecoos-select-list {
  38. position: relative;
  39.  
  40. select {
  41. border-bottom: 1px dashed #6f7b8b;
  42. color: $color-light-green;
  43. font-weight: bold;
  44. font-size: 1.3em;
  45. -webkit-appearance: none;
  46. -moz-appearance: none;
  47. appearance: none;
  48. padding: 5px 35px 5px 5px;
  49. z-index: 1;
  50. background-color: transparent;
  51. position: relative;
  52. cursor: pointer;
  53.  
  54. &.with-filter {
  55. background-image: url(/images/icons/filter.svg);
  56. background-repeat: no-repeat;
  57. background-size: 28px 22px;
  58. background-position: 5px;
  59. padding: 5px 35px 5px 40px;
  60. }
  61. }
  62.  
  63. .fa-chevron-down {
  64. position: absolute;
  65. top: 10px;
  66. right: 15px;
  67. }
  68. }
  69.  
  70. .ecoos-select-list-with-filter {
  71. display: inline-block;
  72. width: 75%;
  73.  
  74. select {
  75. background-image: url(/images/icons/filter.svg);
  76. background-repeat: no-repeat;
  77. background-size: 28px 22px;
  78. background-position: 5px;
  79. padding: 5px 35px 5px 40px;
  80. width: 98%;
  81. }
  82.  
  83. @extend .ecoos-select-list;
  84. }
  85.  
  86. @mixin removeLinkStyle() {
  87. &:visited {
  88. text-decoration: none !important;
  89. }
  90.  
  91. &:hover {
  92. text-decoration: none !important;
  93. }
  94.  
  95. &:focus {
  96. text-decoration: none !important;
  97. }
  98.  
  99. &:active {
  100. text-decoration: none !important;
  101. }
  102. }
  103.  
  104. .padding-sm-top {
  105. padding-top: 15px;
  106. }
  107.  
  108. .padding-sm-bottom {
  109. padding-bottom: 15px;
  110. }
  111.  
  112. .padding-sm-left {
  113. padding-left: 15px;
  114. }
  115.  
  116. .padding-sm-right {
  117. padding-right: 15px;
  118. }
  119.  
  120. .flex-grow-1 {
  121. flex-grow: 1;
  122. }
  123.  
  124. %expand-collapse-config {
  125. display: block;
  126. background-repeat: no-repeat;
  127. padding-left: 45px;
  128. background-position: 13px;
  129. background-size: $var-collapse-expand-size;
  130. }
  131.  
  132. .panel-with-collapse-icon {
  133. a {
  134. &.accordion-toggle {
  135. background-image: url(/images/icons/collapse.svg);
  136. @extend %expand-collapse-config;
  137. }
  138. }
  139.  
  140. a[aria-expanded="true"] {
  141. &.accordion-toggle {
  142. background-image: url(/images/icons/expand.svg);
  143. @extend %expand-collapse-config;
  144. }
  145. }
  146. }
  147.  
  148. %panel-rows-height {
  149. height: 60px;
  150. line-height: 60px;
  151. text-align: center;
  152. }
  153.  
  154. .no-borders {
  155. border: 0 !important;
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement