-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (102 loc) · 2.02 KB
/
style.css
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
114
115
116
/*
html {
height: 100%;
margin: 0;
padding: 0;
}
*/
body {
overflow: hidden; /* 禁止スクロールバーの表示 */
min-height: 100vh;
/*height: 100%;*/
}
canvas {
border: 1px solid black;
touch-action: none; /* Prevent scrolling on touch devices */
}
#pdf-container {
width: 100%;
height: 100%;
/*height: 94vh;*/
overflow: auto;
border: 1px solid black;
}
.playSlider-label {
margin-right: 10px;
}
#thumbnails {
display: none; /* サムネイル表示エリアを隠す */
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: white;
overflow: auto;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 10px;
padding: 10px;
box-sizing: border-box;
z-index: 10; /* サムネイルを前面に表示 */
}
.thumbnail {
cursor: pointer;
/*border: 1px solid black;*/
background: white;
/* width: 100%; */
}
#sliderContainer {
display: flex;
align-items: center;
margin-top: 10px;
width: 100%;
}
#playSlider {
width: 100%;
margin-left: 10px;
}
.file-select-button {
position: relative;
top: 10px;
left: 10px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.file-select-button:hover {
background-color: rgba(0, 0, 0, 0.7);
}
.hidden-file-input {
display: none;
}
.fixed-control {
position: fixed;
top: 150px;
right: 30px;
padding: 10px;
}
.noUiSlider-wrap .inner-block {
padding: 50px;
}
@media screen and (max-width:761px) {
.noUiSlider-wrap .inner-block {
padding: 26px;
}
}
.noUiSlider-wrap .text-wrap {
margin: 10px auto;
}
.noUi-horizontal .noUi-handle {
width: 10px;
height: 10px;
border-radius: 20px;
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after {
content: none;
}
.noUi-connect {
background: linear-gradient(rgba(253,187,45,1) 0%, rgba(34,193,195,1) 100%);
}