| 123456789101112131415161718192021222324252627282930313233343536 |
- #tabs {
- position: relative;
- padding: 5px 32px 0 32px;
- margin-bottom: 24px;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: start;
- a {
- color: #0D6295;
- padding: 10px 15px;
- transition: color 0.3s;
- &:first-child {
- padding-left: 0;
- }
- &:hover {
- color: #e47911;
- text-decoration: underline;
- }
- &.active {
- color: #e47911;
- font-weight: bold;
- text-decoration: underline;
- }
- }
- span {
- width: 1px;
- height: 11px;
- background-color: #ccc;
- }
- }
|