add everything

This commit is contained in:
Koolant
2026-04-17 12:29:41 -04:00
commit 4c1cfe6847
437 changed files with 11939 additions and 0 deletions

30
css/components/tabs.css Normal file
View File

@@ -0,0 +1,30 @@
.tabs {
display: flex;
}
.tabs .tab{
border: none;
cursor: pointer;
font: inherit;
padding: 1rem;
margin: 0;
background-color: transparent;
color: var(--color-on-background);
border-bottom: 3px solid transparent;
}
.tabs .tab:first-child {
border-top-left-radius: 0.5rem;
}
.tabs .tab:last-child {
border-top-right-radius: 0.5rem;
}
.tabs .tab.selected{
border-bottom: 3px solid var(--color-on-background);
}
.tabs .tab:hover{
background-color: var(--color-background-hover);
}