blob: a35a5849b16f69a15b2d7eb7a8103d311a677679 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
.presentationView-cont {
position: absolute;
background: white;
z-index: 1;
box-shadow: #AAAAAA .2vw .2vw .4vw;
right: 0;
top: 0;
bottom: 0;
}
.presentationView-item {
padding: 10px;
display: inline-block;
width: 100%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all .1s;
}
.presentationView-listCont {
padding-left: 10px;
padding-right: 10px;
}
.presentationView-item:hover {
transition: all .1s;
background: #AAAAAA
}
.presentationView-selected {
background: gray;
}
.presentationView-heading {
background: lightseagreen;
padding: 10px;
display: inline-block;
width: 100%;
}
.presentationView-title {
padding-top: 3px;
padding-bottom: 3px;
font-size: 25px;
display: inline-block;
width: calc(100% - 160px);
}
.presentation-icon {
float: right;
}
.presentation-interaction {
float: left;
}
.presentation-interaction-selected {
background: #505050;
float: left;
}
.presentationView-name {
font-size: 15px;
display: inline-block;
}
.presentation-button {
margin-right: 2.5%;
margin-left: 2.5%;
width: 25%;
}
.presentation-buttons {
padding: 10px;
}
.presentation-next:hover {
transition: all .1s;
background: #AAAAAA
}
.presentation-back:hover {
transition: all .1s;
background: #AAAAAA
}
|