|
|
(43 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| .stat-box { | | .icon { |
| width: 100px;
| | filter: invert(0%); |
| height: 150px;
| |
| background-color: #f0f0f0;
| |
| border-radius: 10px;
| |
| text-align: center;
| |
| position: relative;
| |
| transition: width 0.3s ease;
| |
| display: flex;
| |
| flex-direction: column;
| |
| justify-content: center;
| |
| align-items: center;
| |
| } | | } |
|
| |
|
| .stat-box:active {
| | @media (prefers-color-scheme: dark) { |
| width: 175px;
| | .icon { |
| }
| | filter: invert(100%); |
| | | } |
| .stat-box-content { | |
| display: flex; | |
| flex-direction: column;
| |
| justify-content: center;
| |
| align-items: center;
| |
| border-radius: 15px;
| |
| height: 100%;
| |
| width: 100%;
| |
| }
| |
| | |
| .stat-box-icon {
| |
| width: 40px;
| |
| height: 40px;
| |
| }
| |
| | |
| .stat-box-label {
| |
| margin-top: 10px;
| |
| font-size: 16px;
| |
| font-weight: bold;
| |
| text-decoration-line: underline;
| |
| text-decoration-style: dotted;
| |
| text-decoration-thickness: 2px;
| |
| font-family: 'Retail Demo', sans-serif;
| |
| }
| |
| | |
| .stat-box-hover {
| |
| display: none;
| |
| position: absolute;
| |
| top: 0;
| |
| left: 175px;
| |
| background-color: #fff;
| |
| border: 1px solid #ccc;
| |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
| |
| padding: 10px;
| |
| transition: opacity 0.3s ease, transform 0.3s ease;
| |
| border-radius: 15px;
| |
| } | |
| | |
| .stat-box:active .stat-box-hover {
| |
| display: block;
| |
| opacity: 1;
| |
| transform: translateX(0);
| |
| } | | } |
.icon {
filter: invert(0%);
}
@media (prefers-color-scheme: dark) {
.icon {
filter: invert(100%);
}
}