-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (116 loc) · 2.29 KB
/
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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* 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: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
}
.clock-container {
padding: 2rem;
flex-flow: column;
justify-content: flex-start;
align-items: center;
width: 100%;
min-height: 100vh;
background-color:bisque;
}
.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;
}
.set-alarm-container {
width: 100%;
}
.set-alarm-container .set-alarm-container-title {
color: black;
font-weight: bold;
font-size: 1rem;
}
.alarm {
justify-content: space-between;
border-radius: 30px;
padding: 0.5rem 1rem;
align-items: center;
}
.alarm .delete-alarm {
border-radius: 2rem;
background-color: rgba(230, 13, 13, 0.918);
font-weight: bold;
color: wheat;
font-size: xx-medium;
}
.time {
color: #0e141b;
font-size: 1rem;
font-weight: bold;
}
.btn:focus,
.btn:hover {
box-shadow: red 2px 2px 2px 1px inset, #fff -2px -2px 10px 1px inset;
}
.page-title {
background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
align-items: center;
text-align: center;
color: black;
}
/* style of devices of screen size less than 768px */
@media only screen and (min-width: 600px) {
/* adding padding to container */
.main-container {
padding-block: 2rem;
}
.clock-container {
justify-content: center;
border-radius: 50px;
width: 450px;
min-height: auto;
}
}