32 lines
583 B
CSS
32 lines
583 B
CSS
.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;
|
|
}
|