1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
chota/src/_tab.css

31 lines
478 B
CSS
Raw Normal View History

2017-03-30 08:00:14 +03:00
.tabs {
display: flex;
}
.tabs a {
text-decoration: none;
}
2019-09-22 01:56:15 +03:00
.tabs > .dropdown > summary,
2017-03-30 08:00:14 +03:00
.tabs > a {
padding: 1rem 2rem;
2017-04-02 22:22:13 +03:00
flex: 0 1 auto;
color: var(--color-darkGrey);
border-bottom: 2px solid var(--color-lightGrey);
2017-03-30 08:00:14 +03:00
text-align: center;
}
.tabs > a.active,
.tabs > a:hover {
2017-04-02 09:05:23 +03:00
opacity: 1;
border-bottom: 2px solid var(--color-darkGrey);
2017-03-30 08:00:14 +03:00
}
.tabs > a.active {
border-color: var(--color-primary);
2017-03-30 08:00:14 +03:00
}
2017-04-02 22:22:13 +03:00
.tabs.is-full a {
2018-11-11 20:29:21 +03:00
flex: 1 1 auto;
2017-04-02 22:22:13 +03:00
}