-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.css
More file actions
137 lines (117 loc) · 2.07 KB
/
status.css
File metadata and controls
137 lines (117 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Arial", sans-serif;
background-color: #121212; /* AMOLED black */
color: #f0f0f0; /* Light text for contrast */
line-height: 1.6;
}
html {
scroll-behavior: smooth;
}
/* Header */
header {
background-color: #1e1e1e;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #333;
}
.logo img {
height: 50px;
}
nav ul {
list-style: none;
display: flex;
gap: 1.5rem;
}
nav a {
text-decoration: none;
color: #76c7c0; /* Eco-friendly green */
font-weight: bold;
transition: color 0.3s;
}
nav a:hover,
.active {
color: #58a8a1;
}
/* Main Section */
main {
padding: 2rem;
}
.status-section {
text-align: center;
margin: auto;
max-width: 800px;
background-color: #1e1e1e;
padding: 2rem;
border: 1px solid #333;
border-radius: 10px;
}
.status-section h1 {
color: #76c7c0;
margin-bottom: 1rem;
}
.status-section p {
margin-bottom: 2rem;
color: #cccccc;
}
/* Status Cards */
.status-container {
display: flex;
justify-content: center;
gap: 2rem;
}
.status-card {
width: 200px;
padding: 1.5rem;
background-color: #2a2a2a;
border: 1px solid #333;
border-radius: 10px;
text-align: center;
}
.status-card h2 {
margin-bottom: 1rem;
color: #76c7c0;
}
.status-indicator {
width: 100px;
height: 100px;
margin: 0 auto;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 1.5rem;
font-weight: bold;
transition: background-color 0.3s;
}
.status-indicator.up {
background-color: #4caf50; /* Green for UP */
box-shadow: 0 0 10px 3px #4caf50;
}
.status-indicator.down {
background-color: #f44336; /* Red for DOWN */
box-shadow: 0 0 10px 3px #f44336;
}
/* Footer */
footer {
text-align: center;
padding: 1rem 0;
background-color: #1e1e1e;
color: #666;
border-top: 1px solid #333;
}
footer a {
color: #76c7c0;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}