-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-011-countdown-timer2.css
More file actions
64 lines (57 loc) · 1.13 KB
/
100-projects-011-countdown-timer2.css
File metadata and controls
64 lines (57 loc) · 1.13 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
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
padding: 20px;
height: 100vh;
margin: 0;
}
h2 {
text-align: center;
font-size: 24px;
padding: 10px;
font-weight: bold;
margin-bottom: 30px;
background-color: #794646;
color: white;
border-radius: 5px;
}
#timerForm {
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 5px;
width: 300px;
display: flex;
flex-direction: column;
}
#timerForm label {
margin-bottom: 10px;
font-weight: bold;
}
#timerForm input {
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
font-size: 10px;
}
#countdown {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-top: 20px;
color: red;
}
#timerForm input[type='button'] {
background-color: #4caf50;
color: white;
border: none;
cursor: pointer;
}
#timerForm input[type='button']:hover {
background-color: #3217e5;
}