22 lines
397 B
CSS
22 lines
397 B
CSS
.tab {
|
|
padding: 0.5rem 1.25rem;
|
|
background: var(--tab-bg);
|
|
color: #ececec;
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid var(--tab-border);
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tab p {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.active {
|
|
border-top: 1px solid var(--accent-color);
|
|
background: var(--tab-active-bg);
|
|
border-bottom: none;
|
|
}
|