-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (46 loc) · 782 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (46 loc) · 782 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
*{
margin: 0;
padding: 0;
}
main{
width: 100%;
height: 100vh;
background-color: red;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.card{
width: 500px;
height: 200px;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.card h1{
font-size: 5rem;
}
.btn{
width: 40%;
height: 50px;
display: flex;
align-items: center;
justify-content: space-around;
}
.btn button{
width: 50px;
cursor: pointer;
}
.laps{
width: 50%;
height: 10vh;
background-color: white;
margin-top: 15px;
display: flex;
align-items: center;
justify-content: center;
visibility: hidden;
}