blob: dd8a105f657e8c654ca79684e198ff560faa9b09 (
plain)
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
|
@import "globalCssVariables";
.rec-content *{
display: inline-block;
margin: auto;
width: 50;
height: 150px;
border: 1px dashed grey;
padding: 10px 10px;
}
.rec-content {
float: left;
width: inherit;
align-content: center;
}
.rec-scroll {
overflow-y: scroll;
overflow-x: hidden;
position: absolute;
pointer-events: all;
// display: flex;
z-index: 10000;
box-shadow: gray 0.2vw 0.2vw 0.4vw;
// flex-direction: column;
background: whitesmoke;
padding-bottom: 10px;
padding-top: 20px;
// border-radius: 15px;
border: solid #BBBBBBBB 1px;
width: 100%;
text-align: center;
// max-height: 250px;
height: 100%;
text-transform: uppercase;
color: grey;
letter-spacing: 2px;
}
.content {
padding: 10px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.image-background {
pointer-events: none;
background-color: transparent;
width: 50%;
text-align: center;
margin-left: 5px;
}
img{
width: 100%;
height: 100%;
}
.score {
// margin-left: 15px;
width: 50%;
height: 100%;
text-align: center;
margin-left: 10px;
}
|