customvidplayer 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/styles/defaultTheme.css +30 -0
- package/package.json +1 -1
@@ -0,0 +1,30 @@
|
|
1
|
+
.video-player {
|
2
|
+
position: relative;
|
3
|
+
width: 100%;
|
4
|
+
max-width: 800px;
|
5
|
+
margin: 0 auto;
|
6
|
+
}
|
7
|
+
|
8
|
+
.video-element {
|
9
|
+
width: 100%;
|
10
|
+
border-radius: 5px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.skip-button {
|
14
|
+
position: absolute;
|
15
|
+
bottom: 10px;
|
16
|
+
right: 10px;
|
17
|
+
padding: 8px 12px;
|
18
|
+
background: #ff5722;
|
19
|
+
color: white;
|
20
|
+
border: none;
|
21
|
+
border-radius: 5px;
|
22
|
+
cursor: pointer;
|
23
|
+
}
|
24
|
+
|
25
|
+
.section {
|
26
|
+
cursor: pointer;
|
27
|
+
margin: 5px 0;
|
28
|
+
color: #007bff;
|
29
|
+
}
|
30
|
+
|