| 123456789101112131415161718192021222324252627282930313233343536373839 |
- .gf-tabs {
- @include clearfix();
- float: left;
- position: relative;
- top: 1px;
- }
- .gf-tabs-item {
- float: left;
- list-style: none;
- }
- .gf-tabs-link {
- padding: $tabs-padding;
- margin-right: $spacer/2;
- position: relative;
- display: block;
- border: solid transparent;
- border-width: 2px 1px 1px;
- border-radius: 3px 3px 0 0;
- i {
- margin-right: 5px;
- }
- &:hover,
- &:focus {
- color: $link-hover-color;
- }
- &.active,
- &.active:hover,
- &.active:focus {
- border-color: $orange $dark-4 transparent;
- background: $page-bg;
- color: $link-color;
- }
- }
|