forked from CodeYourFuture/Module-Data-Groups
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 796 Bytes
/
style.css
File metadata and controls
58 lines (50 loc) · 796 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
52
53
54
55
56
57
58
body {
font-family: Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 0;
}
.centre {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: white;
padding: 30px 40px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
#alarmSet {
margin: 20px;
}
h1 {
text-align: center;
border: 2px solid #ddd;
border-radius: 6px;
}
button {
padding: 10px 18px;
margin: 5px;
font-size: 15px;
border: none;
border-radius: 6px;
cursor: pointer;
}
#set {
background: #4caf50;
color: white;
}
#stop {
background: #e53935;
color: white;
}
button:hover {
opacity: 0.85;
}