blob: 4c598cdea364e21d766c0b9cb1d75a45c3717487 (
plain) (
blame)
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
|
.content {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
gap: 24px;
margin-top: 24px;
}
.content a {
position: relative;
width: 100%;
}
.game {
display: flex;
width: 100%;
flex-direction: column;
overflow: hidden;
border-radius: 24px;
background-color: var(--primary-dark);
}
.header {
display: flex;
overflow: hidden;
position: relative;
flex: 1;
}
.header span {
position: relative;
z-index: 2;
display: flex;
text-align: center;
justify-content: center;
width: 100%;
padding: 24px 0px;
text-wrap: nowrap;
}
.header div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background-size: cover;
filter: blur(4px);
}
.infoBlockContainer {
flex: 1;
display: flex;
gap: 12px;
margin: 12px;
align-items: center;
justify-content: center;
height: 50%;
}
|