-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (76 loc) · 1.32 KB
/
styles.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Roboto', sans-serif;
color:white;
}
body {
background:#0f060fd6;
width: 100%;
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
}
.main{
width:100%;
}
.main__title{
margin: 20px 0;
text-align: center;
}
.main__game{
width:400px;
height:281.25px;
display: flex;
flex-direction: column;
margin-bottom:30px;
}
.main__container{
display:flex;
justify-content:space-evenly;
flex-wrap:wrap;
}
.game__img{
object-fit:cover;
height:80%;
width:100%;
border-radius: 20px 20px 0 0;
}
.game__footer{
display:flex;
justify-content: space-between;
padding:0 20px;
align-items: center;
height:20%;
background:#6DBE04;
border-radius: 0px 0px 20px 20px;
}
.game__footer--title{
color:black;
}
.game__footer--icon{
cursor: pointer;
background: white;
border-radius: 50%;
color: black;
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border:1px solid black;
transition: all .5s;
}
.game__footer--icon:hover{
background: #6dbe0487;
}
.game__footer--icon > img{
color:black;
width:20px;
height:20px;
}
.break{
flex-basis:100%;
}