blob: e66a641194bb98e590166be09a125ce940b3ca33 (
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
|
* {
box-sizing: border-box !important;
}
.moveOn{
display: inline-block;
border: none;
padding: 6px 12px;
margin-botton: 0;
font-size: 1rem;
font-weight: normal;
text-align: center;
cursor: pointer;
border-radius: 4px;
background-color: #4BB543;
color: white;
}
button:disabled{
opacity: 0.5;
cursor: not-allowed;
}
.lists{
overflow: scroll !important;
}
img {
max-width: 15rem !important;
height: auto !important;
padding: .3rem;
}
.lists .list .list-item {
background-color: #B6977D !important;
color: #21201E;
margin: 0.3rem 0;
height: 2.5rem;
border-radius: 8px !important;
cursor: pointer;
}
.lists .list {
background-color: rgba(0, 0, 0, 0.3);
min-height: 2.5rem;
margin: .5rem;
border-radius: 8px !important;
}
.startBasket {
height: 100% !important;
min-height: 2rem;
}
|