-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (45 loc) · 894 Bytes
/
style.css
File metadata and controls
51 lines (45 loc) · 894 Bytes
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
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #f4f4f4;
text-align: center;
padding: 2em;
}
h1 {
margin-bottom: 1em;
}
button {
padding: 0.75em 1.5em;
font-size: 1em;
border: none;
border-radius: 6px;
background-color: #00bcd4;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0097a7;
}
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #232323;
padding: 2em;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
z-index: 1000;
}
.hidden {
display: none;
}
.battery-box {
width: 150px;
height: 75px;
margin: 1em auto;
border: 4px solid #00e676;
border-radius: 8px;
background: linear-gradient(to right, #00e676 0%, #00796b 100%);
}