-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (51 loc) · 842 Bytes
/
style.css
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
body{
text-align: center;
}
#alarm{
border: 1px solid #222222;
width:400px;
background-color: #222222;
color: white;
text-align: center;
margin: auto;
vertical-align: middle;
border-radius: 20%;
}
#alarm h2{
color:gray;
}
#ctime{
font-size: 1.5rem;
color: gray;
}
#set-alarm-button{
background-color: gray;
color:antiquewhite;
font-size: large;
margin-bottom: 20px;
}
.line{
border:1px solid white;
background-color: white;
}
#alarm-values select{
background-color: gray;
color: white;
margin: 0 10px 0 10px;
}
#alarm-values{
margin-top: 20px;
padding: 2px;
margin-bottom: 20px;
}
#list{
list-style: none;
}
#list li{
margin-top:10px;
display: flex;
justify-content: space-around;
}
#list li input{
background-color: red;
}