/* * SPDX-FileCopyrightText: 2025 Alexander Minges * * SPDX-License-Identifier: MIT */ /* Token Ruler Waypoint Styling with Color-Coded Movement Ranges */ .system-ds4 .waypoint-label { font-size: 1.5em; // Main icon styling for movement types &.move-range > i.fa-person-walking { color: var(--color-level-success); } &.dash-range > i.fa-person-running { color: var(--color-level-warning); } &.out-of-range > i.fa-person-rays { color: var(--color-level-error); animation: pulse 2s infinite; } .distance { &.move-range { color: var(--color-level-success); } &.dash-range { color: var(--color-level-warning); font-weight: bold; } &.out-of-range { color: var(--color-level-error); font-weight: bold; animation: pulse 2s infinite; } } .delta { opacity: 0.8; font-size: 0.9em; } .elevation { font-style: italic; opacity: 0.9; } } /* Icon animations */ @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }