-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (47 loc) · 832 Bytes
/
style.css
File metadata and controls
53 lines (47 loc) · 832 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
49
50
51
52
53
body {
background-color: aqua;
}
.container {
width: 600px;
margin: 0 auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.card {
background-color: #fff;
padding: 20px;
text-align: center;
}
.card-text span {
display: block;
font-weight: bold;
}
.timer-wrap {
height: 50px;
width: 50px;
border-radius: 100%;
margin: 0 auto;
border: 1px solid rgb(0, 110, 255);
color: rgb(0, 110, 255);
font-size: 2rem;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.btn {
display: inline-block;
padding: .8rem;
margin-top: 2rem;
border: 0;
background-color: rgb(0, 110, 255);
color: #fff;
border-radius: 0.5rem;
cursor: pointer;
}
.btn:disabled {
background-color: rgba(0, 110, 255, 0.452);
pointer-events: none;
}