You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
527 B

2 years ago
/**
* @file
* Visual styles for tabs.
*/
div.tabs {
margin: 1em 0;
}
ul.tabs {
2 years ago
margin: 0;
2 years ago
padding: 0;
list-style: none;
}
.tabs > li {
display: inline-block;
margin-right: 0.3em; /* LTR */
}
[dir="rtl"] .tabs > li {
margin-right: 0;
margin-left: 0.3em;
}
.tabs a {
display: block;
padding: 0.2em 1em;
text-decoration: none;
}
.tabs a.is-active {
2 years ago
background-color: #fff;
color: $red;
}
.tabs.primary > li > a.is-active {
color: $red;
2 years ago
}
.tabs a:focus,
.tabs a:hover {
2 years ago
background-color: #fff;
2 years ago
}