first commit

This commit is contained in:
2025-05-13 12:12:47 +02:00
commit c37cf55f67
75 changed files with 13258 additions and 0 deletions

21
styles/Tab.module.css Normal file
View File

@@ -0,0 +1,21 @@
.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;
}