-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-012-countdown-timer-up1.css
More file actions
90 lines (76 loc) · 1.37 KB
/
100-projects-012-countdown-timer-up1.css
File metadata and controls
90 lines (76 loc) · 1.37 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
80
81
82
83
84
85
86
87
88
89
90
body {
background-color: lightyellow;
}
.page-wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
form {
display: flex;
flex-direction: column;
justify-content: center;
gap: 15px;
}
h2 {
display: flex;
justify-content: center;
}
label {
display: flex;
justify-content: center;
}
input {
display: flex;
justify-content: center;
border-radius: 4px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.button1 {
background-color: black;
color: white;
border: 2px green solid;
border-radius: 20px;
}
.button1:hover {
background-color: green;
color: white;
border: 2px green solid;
border-radius: 20px;
font-weight: 900;
}
.button2 {
background-color: black;
color: red;
border: 2px red solid;
border-radius: 20px;
}
.button2:hover {
background-color: red;
color: white;
border: 2px red solid;
border-radius: 20px;
font-weight: 900;
}
.button3 {
background-color: white;
color: darkgray;
border: 2px darkgray solid;
border-radius: 20px;
}
.button3:hover {
background-color: darkgray;
color: white;
border: 2px white solid;
border-radius: 20px;
}
p {
font-size: 54px;
}