-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (60 loc) · 931 Bytes
/
style.css
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
*{
margin: 0;
box-sizing: border-box;
align-items: center;
font-family: sans-serif;
}
.btn{
height: 100px;
width: 100px;
margin: 20px;
border-radius: 50%;
}
.btn:hover{
opacity: 0.5;
cursor: pointer;
}
.display{
display: flex;
gap: 100px;
}
.box{
width: 200px;
height: 200px;
margin-top: 5px;
margin-bottom: 25px;
border: 2px solid black;
}
.box img{
margin: 40px;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
}
.info{
display: flex;
gap: 200px;
margin-top: 50px;
}
.comps{
margin-left: 5px;
}
#counter{
display: flex;
flex-direction: row;
margin-top: 80px;
gap: 200px;
font-size: 50px;
}
.box-count{
width: 100px;
height: 100px;
margin-top: -70px;
margin-bottom: 25px;
border: 2px solid black;
background-color: orange;
text-align: center;
padding: 20px;
}