-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-012-countdown-timer-up2.css
More file actions
77 lines (70 loc) · 1.49 KB
/
100-projects-012-countdown-timer-up2.css
File metadata and controls
77 lines (70 loc) · 1.49 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
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
margin: 0;
background-color: #333333;
}
h2 {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 30px;
background-color: #e78b8b;
color: white;
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
padding: 20px;
border-radius: 5px;
}
#timerForm {
background-color: #a5a5a5;
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.6);
padding: 20px;
border-radius: 5px;
width: 300px;
display: flex;
flex-direction: column;
align-items: center;
}
#timerForm label {
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
font-size: 14px;
width: 80%;
color: #fff;
}
#timerForm input {
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
font-size: 14px;
width: 80%;
}
#timerForm input[type='button'] {
background-color: #4caf50;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
}
#timerForm input[type='button']:hover {
background-color: #07de76;
} #countdown {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-top: 20px;
color: rgba(27, 39, 203);
}