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

54 lines
753 B
CSS

2 years ago
.tabs {
position: relative;
max-width: 96ch;
2 years ago
min-height: 200px;
}
.tab {
float: left;
}
.tab > label {
2 years ago
cursor: pointer;
padding: 1rem 1.5em;
2 years ago
}
.tab [type=radio] {
clip: rect(0, 0, 0, 0);
2 years ago
height: 0;
overflow: hidden;
position: absolute;
width: 0;
2 years ago
}
.tab [type=radio] + label {
outline: 2px solid var(--bgcolor-accent);
outline-offset: -1px;
2 years ago
}
/*
.tab [type=radio]:focus + label {
outline: 2px dotted black;
}
*/
.tab [type=radio]:checked ~ label {
background-color: var(--bgcolor-accent);
color: var(--color-accent);
z-index: 2;
2 years ago
}
.tab [type=radio]:checked ~ label ~ .content {
opacity: 1;
z-index: 1;
2 years ago
}
.tab .content {
bottom: 0;
left: 0;
2 years ago
opacity: 0;
position: absolute;
right: 0;
top: 10rem;
2 years ago
}