-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
114 lines (91 loc) · 1.84 KB
/
index.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
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
body{
background-color: #212121;
margin-top: 5%;
margin-left: 40%;
font-family: 'Times New Roman', Times, serif;
margin-right: 40%;
/* align-items: center; */
}
.container{
align-content: center;
text-align: center;
}
.time-display{
display: flex;
flex-direction: row;
align-content: center;
background-color: white;
width: 230px;
height: 10%;
border-radius: 4px;
padding-left: 5px;
padding-right: 90px;
margin-left: 35px;
}
.timer{
width: 40px;
height: 40px;
margin-top: 7px;
margin-right: 60px;
}
#clock{
font-size: 3rem;
font-weight: bold;
color: black;
}
.alarm-heading{
color: whitesmoke;
margin-bottom: 20px;
padding-top: 50px;
}
.set-alarm-field{
margin-top: -20px;
height: 40px;
/* background-color: yellowgreen; */
padding-top: 0px;
}
.controls button{
background-color: #466a99;
border-color: #466a99;
color: whitesmoke;
width: 105px;
height: 35px;
border-radius: 5px;
font-size: 0.8rem;
font-weight:500;
}
.controls button:hover{
background-color: #204b74;
}
#myList{
list-style-type: none;
}
#myList li{
font-size: 1.2rem;
color: whitesmoke;
background-color: #204b74;
height: 2rem;
margin-left: -30px;
border-radius: 4px;
padding-left: 16px;
padding-top: 10px;
width: 280px;
margin-bottom: 10px;
}
.time-list{
display: flex;
flex-direction: row;
}
.time-list span{
/* background-color: violet; */
width: 160px;
margin-right: 18px;
}
.time-list button{
background-color: #5d759d;
border-color: #5d759d;
border-radius: 3px;
border-width: 0px;
height: 22px;
color: whitesmoke;
}