Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @font-face {
- font-family: Roboto;
- font-style: normal;
- font-weight: 400;
- src: url(/fonts/Roboto/Roboto-Regular.ttf);
- }
- * {
- font-family: Roboto;
- }
- .left-gray-border {
- border-left: 1px solid $color-light-gray;
- }
- .right-gray-border {
- border-right: 1px solid $color-light-gray;
- }
- .bottom-gray-border {
- border-bottom: 1px solid $color-light-gray;
- }
- .flex-pull-right {
- margin-left: auto;
- }
- .flex-column {
- display: flex;
- flex-flow: column;
- }
- .flex-row {
- display: flex;
- }
- .ecoos-select-list {
- position: relative;
- select {
- border-bottom: 1px dashed #6f7b8b;
- color: $color-light-green;
- font-weight: bold;
- font-size: 1.3em;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- padding: 5px 35px 5px 5px;
- z-index: 1;
- background-color: transparent;
- position: relative;
- cursor: pointer;
- &.with-filter {
- background-image: url(/images/icons/filter.svg);
- background-repeat: no-repeat;
- background-size: 28px 22px;
- background-position: 5px;
- padding: 5px 35px 5px 40px;
- }
- }
- .fa-chevron-down {
- position: absolute;
- top: 10px;
- right: 15px;
- }
- }
- .ecoos-select-list-with-filter {
- display: inline-block;
- width: 75%;
- select {
- background-image: url(/images/icons/filter.svg);
- background-repeat: no-repeat;
- background-size: 28px 22px;
- background-position: 5px;
- padding: 5px 35px 5px 40px;
- width: 98%;
- }
- @extend .ecoos-select-list;
- }
- @mixin removeLinkStyle() {
- &:visited {
- text-decoration: none !important;
- }
- &:hover {
- text-decoration: none !important;
- }
- &:focus {
- text-decoration: none !important;
- }
- &:active {
- text-decoration: none !important;
- }
- }
- .padding-sm-top {
- padding-top: 15px;
- }
- .padding-sm-bottom {
- padding-bottom: 15px;
- }
- .padding-sm-left {
- padding-left: 15px;
- }
- .padding-sm-right {
- padding-right: 15px;
- }
- .flex-grow-1 {
- flex-grow: 1;
- }
- %expand-collapse-config {
- display: block;
- background-repeat: no-repeat;
- padding-left: 45px;
- background-position: 13px;
- background-size: $var-collapse-expand-size;
- }
- .panel-with-collapse-icon {
- a {
- &.accordion-toggle {
- background-image: url(/images/icons/collapse.svg);
- @extend %expand-collapse-config;
- }
- }
- a[aria-expanded="true"] {
- &.accordion-toggle {
- background-image: url(/images/icons/expand.svg);
- @extend %expand-collapse-config;
- }
- }
- }
- %panel-rows-height {
- height: 60px;
- line-height: 60px;
- text-align: center;
- }
- .no-borders {
- border: 0 !important;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement