Added CSS components

This commit is contained in:
2025-09-23 00:48:19 +02:00
parent 9b7b19992c
commit 36f9f62a0e
6 changed files with 992 additions and 0 deletions

64
static/styles/nav.css Normal file
View File

@@ -0,0 +1,64 @@
nav{
height:40px;
position:inherit;
top:0;
z-index:1;
text-align: center;
display: grid;
}
.nav{
display:flex;
justify-content:center;
align-items:center;
min-height:32px;
background:none;
text-decoration:none;
cursor:pointer;
float:left;
clear:left;
text-align:center;
font-size: var(--font-size);
width:100%;
margin:0 0 10px 0;
background-color: var(--main-color);
color:var(--main-fg-color);
text-decoration-color:#d4d4d4;
border-color: #000000;
border-width: var(--button-border-width);
border-style: var(--button-border-style);
}
.navSep {
width: 100%;
float:left;
margin-bottom: 20px;
background-color: var(--main-title-fg-color);
border-color: var(--main-title-fg-color);
}
.selected-nav {
border-style: var(--button-selected-style);
background-color: var(--main-bg-color);
color: var(--main-title-fg-color);
}
.disabled-nav {
color: gray;
cursor: default;
}