| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .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: 0 1px 1px;
- border-radius: 3px 3px 0 0;
- color: $text-color;
- i {
- margin-right: 5px;
- }
- .gicon {
- position: relative;
- top: -2px;
- }
- &:hover,
- &:focus {
- color: $link-hover-color;
- }
- &.active,
- &.active:hover,
- &.active:focus {
- border-color: $orange $tab-border-color transparent;
- background: $page-bg;
- color: $link-color;
- overflow: hidden;
- &::before {
- display: block;
- content: " ";
- position: absolute;
- left: 0;
- right: 0;
- height: 2px;
- top: 0;
- background-image: linear-gradient(
- to right,
- #ffd500 0%,
- #ff4400 99%,
- #ff4400 100%
- );
- }
- }
- }
|