2025-05-21 14:40:45 +03:00
|
|
|
.glass {
|
|
|
|
|
background: rgba(31, 41, 55, 0.2);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
border: 1px solid rgba(147, 51, 234, 0.3);
|
|
|
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
|
|
|
transition: all 0.3s ease;
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
|
|
|
|
|
2025-05-21 14:40:45 +03:00
|
|
|
.glass:hover {
|
|
|
|
|
background: rgba(147, 51, 234, 0.2);
|
|
|
|
|
border-color: rgba(147, 51, 234, 0.7);
|
|
|
|
|
box-shadow: 0 6px 12px rgba(147, 51, 234, 0.3);
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
2025-05-21 14:40:45 +03:00
|
|
|
|
|
|
|
|
.glass_enabled {
|
|
|
|
|
background: rgba(30, 240, 135, 0.2);
|
|
|
|
|
border-color: rgba(51, 234, 127, 0.7);
|
|
|
|
|
box-shadow: 0 6px 12px rgba(30, 240, 135, 0.3);
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
2025-05-21 14:40:45 +03:00
|
|
|
|
|
|
|
|
.gauge {
|
|
|
|
|
width: 64px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
background: conic-gradient(#a758f1 0deg, #7f0bfa var(--value), #4b5563 0);
|
|
|
|
|
box-shadow: 0 6px 12px rgba(147, 51, 234, 0.3);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
position: relative;
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
|
|
|
|
|
2025-05-21 14:40:45 +03:00
|
|
|
.gauge::before {
|
|
|
|
|
content: '';
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
background: rgba(31, 41, 55, 0.9);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
position: absolute;
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
|
|
|
|
|
2025-05-21 14:40:45 +03:00
|
|
|
.gauge span {
|
|
|
|
|
color: #d8b4fe;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
z-index: 1;
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
|
|
|
|
|
2025-05-21 14:40:45 +03:00
|
|
|
.clock,
|
|
|
|
|
.number {
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
color: #d8b4fe;
|
|
|
|
|
font-weight: bold;
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
|
|
|
|
|
2025-05-21 14:40:45 +03:00
|
|
|
input[type="range"] {
|
|
|
|
|
accent-color: #9333ea;
|
|
|
|
|
box-shadow: 0 6px 12px rgba(147, 51, 234, 0.3);
|
2025-05-21 14:24:31 +03:00
|
|
|
}
|
2025-05-21 14:40:45 +03:00
|
|
|
|
|
|
|
|
.tile-content {
|
|
|
|
|
min-height: 12rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gauge-tile-content {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|