-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.css
More file actions
79 lines (67 loc) · 1.26 KB
/
clock.css
File metadata and controls
79 lines (67 loc) · 1.26 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
/* GLobal Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
}
.d-flex {
display: flex;
}
.btn {
outline: none;
border: none;
background-color: wheat;
cursor: pointer;
padding: 0.5rem;
border-radius: 1px;
transition: all 0.3s ease-in-out;
}
select {
appearance: none;
outline: black;
background-color: wheat;
padding: 0.5rem;
font-weight: bold;
border: none;
border-radius: 2rem;
margin-right: 0.3rem;
cursor: pointer;
color: #0E141B;
border-color: black;
}
.mb {
margin-bottom: 1rem;
}
/* End GLobal Styles */
.main-container {
min-height: 100vh;
align-items: center;
justify-content: center;
background-color: #0E141B;
}
.clock-container {
padding: 2rem;
flex-flow: column;
justify-content: flex-start;
align-items: center;
width: 100%;
min-height: 100vh;
background-color: #1890FF;
}
.current-time {
font-size: 2rem;
color: black;
}
.alarm-form {
justify-content: space-between;
width: 100%;
}
.submit-button {
border-color: black;
border: 10px;
border-radius: 2rem;
font-weight: bold;
}