blob: 01e7f48342bdd4710ed5ad3c0195b7dc053a28c2 (
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
|
.presBox-cont {
position: absolute;
z-index: 2;
box-shadow: #AAAAAA .2vw .2vw .4vw;
right: 0;
top: 0;
bottom: 0;
width: 100%;
min-width: 100px;
height: 100%;
min-height: 50px;
letter-spacing: 2px;
overflow: hidden;
transition: 0.7s opacity ease;
pointer-events: all;
.presBox-listCont {
position: relative;
}
.presBox-buttons {
padding: 10px;
width: 100%;
.presBox-button {
margin-right: 2.5%;
margin-left: 2.5%;
width: 20%;
border-radius: 5px;
}
}
}
|