Spaces:
Running
Running
Update index.html
Browse files- index.html +62 -54
index.html
CHANGED
@@ -1,57 +1,65 @@
|
|
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 |
</head>
|
57 |
<body>
|
|
|
1 |
+
<style>
|
2 |
+
body {
|
3 |
+
display: flex;
|
4 |
+
flex-direction: column;
|
5 |
+
align-items: center;
|
6 |
+
background-color: #f0f0f0;
|
7 |
+
font-family: sans-serif;
|
8 |
+
padding: 20px;
|
9 |
+
}
|
10 |
+
|
11 |
+
video {
|
12 |
+
max-width: 100%;
|
13 |
+
height: auto;
|
14 |
+
margin-bottom: 10px;
|
15 |
+
}
|
16 |
+
|
17 |
+
.controls {
|
18 |
+
display: flex;
|
19 |
+
flex-direction: column;
|
20 |
+
gap: 15px;
|
21 |
+
width: 100%;
|
22 |
+
max-width: 800px;
|
23 |
+
}
|
24 |
+
|
25 |
+
.control-group {
|
26 |
+
display: flex;
|
27 |
+
flex-direction: row; /* 横並び */
|
28 |
+
align-items: center;
|
29 |
+
justify-content: flex-start;
|
30 |
+
gap: 10px;
|
31 |
+
flex-wrap: nowrap;
|
32 |
+
}
|
33 |
+
|
34 |
+
.control-group label {
|
35 |
+
white-space: nowrap; /* 改行しない */
|
36 |
+
min-width: 100px; /* ラベル幅を統一 */
|
37 |
+
text-align: right;
|
38 |
+
}
|
39 |
+
|
40 |
+
input[type="range"] {
|
41 |
+
flex-grow: 1; /* スライダーが伸びて余白を埋める */
|
42 |
+
}
|
43 |
+
|
44 |
+
input[type="number"] {
|
45 |
+
width: 80px;
|
46 |
+
}
|
47 |
+
|
48 |
+
button {
|
49 |
+
align-self: flex-start;
|
50 |
+
}
|
51 |
+
|
52 |
+
select {
|
53 |
+
width: 300px;
|
54 |
+
}
|
55 |
+
|
56 |
+
.video-selector {
|
57 |
+
margin-top: 15px;
|
58 |
+
display: flex;
|
59 |
+
align-items: center;
|
60 |
+
gap: 10px;
|
61 |
+
}
|
62 |
+
</style>
|
63 |
|
64 |
</head>
|
65 |
<body>
|