-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (83 loc) · 1.55 KB
/
styles.css
File metadata and controls
97 lines (83 loc) · 1.55 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
body {
font-family: Arial, sans-serif;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* displaying elements horizontally */
.container {
width: 600px;
padding: 20px;
background-color: #1a1a1a;
border-radius: 5px;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}
h1 {
text-align: center;
}
.clock {
text-align: center;
font-size: 40px;
margin-bottom: 20px;
}
/* Increase the width of the set-alarm class */
.set-alarm {
display: flex;
justify-content: center;
align-items: center;
}
.set-alarm label,
.set-alarm input,
.set-alarm select {
margin-right: 10px;
margin-bottom: 10px;
background-color: #404040;
color: white;
border: none;
padding: 3px 6px;
border-radius: 3px;
width: 50px;
}
.set-alarm .circle-btn {
width: 60px;
height: 60px;
border-radius: 50%;
font-size: 30px;
line-height: 60px;
}
.alarms-list {
margin-top: 30px;
}
.alarms-list h2 {
margin-bottom: 10px;
}
.list-group-item {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #808080;
}
/* Style for the delete button */
.delete-button {
margin-left: 10px;
cursor: pointer;
background-color: transparent;
border: none;
padding: 5px;
font-size: 0;
box-shadow: none;
transition: opacity 0.2s ease;
}
/* Add some space around the recycle bin icon */
.delete-button img {
width: 18px;
height: 18px;
padding: 2px;
}
/* Style for the delete button on hover */
.delete-button:hover {
opacity: 0.8;
}