blob: 5c40a88089d092b4193635835fbfb5a6f26947eb (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
.presentationView-cont {
position: absolute;
z-index: 2;
box-shadow: #AAAAAA .2vw .2vw .4vw;
right: 0;
top: 0;
bottom: 0;
letter-spacing: 2px;
overflow: hidden;
transition: 0.7s opacity ease;
pointer-events: all;
}
.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;
.documentView-node {
position: absolute;
z-index: 1;
}
}
.presentationView-item-above {
border-top: black 2px solid;
}
.presentationView-item-below {
border-bottom: black 2px solid;
}
.presentationView-listCont {
padding-left: 10px;
padding-right: 10px;
}
.presentationView-item:hover {
transition: all .1s;
background: #AAAAAA;
border-radius: 12px;
}
.presentationView-selected {
background: gray;
color: black;
border-radius: 12px;
box-shadow: black 2px 2px 5px;
}
.presentationView-heading {
background: gray;
padding: 10px;
display: inline-block;
width: 100%;
}
.presentationView-title {
padding-top: 3px;
padding-bottom: 3px;
font-size: 25px;
display: inline-block;
width: calc(100% - 200px);
letter-spacing: 2px;
}
.presentation-icon {
float: right;
}
.presentation-interaction {
color: gray;
float: left;
}
.presentation-interaction-selected {
color: white;
float: left;
}
.presentationView-name {
font-size: 15px;
display: inline-block;
}
.presentation-button {
margin-right: 2.5%;
margin-left: 2.5%;
width: 20%;
border-radius: 5px;
}
.presentation-buttons {
padding: 10px;
}
.presentation-next:hover {
transition: all .1s;
background: #AAAAAA
}
.presentation-back:hover {
transition: all .1s;
background: #AAAAAA
}
|