-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDateCounter.css
More file actions
48 lines (44 loc) · 781 Bytes
/
Copy pathDateCounter.css
File metadata and controls
48 lines (44 loc) · 781 Bytes
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
html body {
background: linear-gradient(
90deg,
rgba(16, 181, 255, 1) 0%,
rgba(8, 143, 236, 1) 50%,
rgba(8, 93, 236, 1) 100%
);
}
#title {
font-size: x-large;
font-weight: bold;
text-align: center;
margin-top: 10px;
}
#input {
display: flex;
margin: 20px auto auto;
width: 400px;
height: 50px;
padding: 15px;
background-color: rgb(250, 152, 117);
border-radius: 10px;
border: none;
font-weight: bold;
}
#clock {
display: flex;
justify-content: center;
margin: 20px auto auto;
}
#clock > span {
font-size: large;
font-weight: bold;
background-color: black;
border-radius: 8px;
color: white;
padding: 10px;
margin: 0 5px;
}
#clock > span > span {
background-color: red;
border-radius: 10px;
padding: 5px;
}