Files
gandalf/style.css

89 lines
1.6 KiB
CSS
Raw Normal View History

2025-01-04 01:27:49 -05:00
:root {
--primary-color: #006FFF;
--secondary-color: #00439C;
--background-color: #f8f9fa;
--card-background: #ffffff;
--text-color: #2c3e50;
--border-radius: 12px;
}
body {
font-family: 'Inter', -apple-system, sans-serif;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
padding: 0;
}
2025-01-04 00:33:04 -05:00
.container {
2025-01-04 01:27:49 -05:00
max-width: 1400px;
2025-01-04 00:33:04 -05:00
margin: 0 auto;
padding: 20px;
}
2025-01-04 01:27:49 -05:00
.header {
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
color: white;
padding: 20px;
border-radius: var(--border-radius);
margin-bottom: 30px;
}
2025-01-04 00:33:04 -05:00
.metrics-container {
display: grid;
2025-01-04 01:27:49 -05:00
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 25px;
2025-01-04 00:33:04 -05:00
margin-top: 20px;
}
.metric-card {
2025-01-04 01:27:49 -05:00
background: var(--card-background);
padding: 25px;
border-radius: var(--border-radius);
box-shadow: 0 4px 6px rgba(0,0,0,0.07);
transition: transform 0.2s ease;
2025-01-04 00:33:04 -05:00
}
2025-01-04 01:27:49 -05:00
.metric-card:hover {
transform: translateY(-5px);
}
.device-status {
display: flex;
align-items: center;
gap: 10px;
margin: 10px 0;
}
.status-indicator {
width: 12px;
height: 12px;
border-radius: 50%;
}
.status-up {
background-color: #10B981;
}
.status-down {
background-color: #EF4444;
2025-02-07 20:31:56 -05:00
}
.diagnostics-panel {
margin-top: 15px;
}
.diagnostic-item {
padding: 10px;
border-left: 4px solid var(--primary-color);
margin: 10px 0;
background: rgba(0,111,255,0.1);
}
.fiber-diagnostic {
border-color: #10B981;
}
.copper-diagnostic {
border-color: #F59E0B;
2025-01-04 01:27:49 -05:00
}