| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .network-menu {
- background: #0A0101;
- padding: 20px;
- min-width: 360px;
- transition: all 0.3s ease-in;
- }
- .title {
- font-size: 24px;
- font-weight: 700;
- margin-bottom: 8px;
- color: #ffffff;
- }
- .subtitle {
- font-size: 11px;
- color: #999999;
- margin-bottom: 16px;
- font-weight: 500;
- }
- button {
- background: transparent;
- border: none;
- padding: 0;
- margin: 0;
- all: unset;
- }
- button:hover {
- opacity: 0.8;
- }
- .network-item {
- background: #140202;
- border-radius: 20px;
- padding: 12px 16px;
- transition: all 0.2s ease;
- }
- .network-item:hover {
- background: #190202;
- }
- .network-item.active {
- background: #3a0505;
- border: 1px solid #1A0909;
- }
- .network-item.active:hover {
- background: #450707;
- }
- .network-header {
- }
- .network-info {
- }
- .network-name {
- font-size: 13px;
- font-weight: 600;
- color: #ffffff;
- }
- .network-subtext {
- font-size: 11px;
- color: #999999;
- }
- .network-signal {
- font-size: 12px;
- color: #aaaaaa;
- }
- .network-icon {
- font-size: 24px;
- font-family: "Material Symbols Outlined";
- }
- .device-item {
- padding: 12px 16px;
- transition: all 0.2s ease;
- }
- .device-icon {
- font-size: 20px;
- font-family: "Material Symbols Outlined";
- }
- .device-subtext {
- font-size: 11px;
- color: #999999;
- }
|