marc/test.css

41 lines
472 B
CSS
Raw Permalink Normal View History

2023-06-30 16:00:14 +00:00
.tabs {
display: flex;
flex-wrap: wrap;
}
.tabs > input {
display: none;
}
.tabs > input:checked + label + div {
display: block;
}
.tabs > label {
order: 1;
}
.tabs > div {
display: none;
flex-basis: 100%;
order: 2;
}
.tabs {
border: 1px solid;
}
.tabs > input:checked + label {
background-color: gray;
}
.tabs > label {
padding: 10px;
}
.tabs > div {
padding: 10px;
}
2023-06-30 20:07:10 +00:00
body {
background-color: white;
color: black;
}
body.dark {
background-color: black;
color: white;
}