Split styles into modular CSS files

This commit is contained in:
2026-02-04 20:46:24 +01:00
parent fc373ffb91
commit d6d3566f47
8 changed files with 749 additions and 706 deletions

31
wwwroot/css/admin.css Normal file
View File

@@ -0,0 +1,31 @@
.admin-toggle {
position: fixed;
bottom: 18px;
right: 18px;
width: 44px;
height: 44px;
border-radius: 50%;
border: 1px solid #e3d4bd;
background: rgba(255, 255, 255, 0.9);
color: #6c5a42;
font-weight: 700;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
z-index: 30;
}
.admin-panel {
position: fixed;
bottom: 70px;
right: 18px;
width: 320px;
z-index: 40;
display: flex;
flex-direction: column;
gap: 10px;
}
.panel-header {
display: flex;
justify-content: space-between;
align-items: center;
}