-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (49 loc) · 904 Bytes
/
styles.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
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
}
#app {
display: flex;
flex-direction: column;
height: 100%;
}
#video-container {
flex-grow: 1;
position: relative;
}
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
#button-container {
padding: 10px;
background-color: #f0f0f0;
display: flex;
flex-wrap: wrap;
justify-content: center;
max-height: 30%;
overflow-y: auto;
}
#button-container button {
margin: 5px;
padding: 10px;
font-size: 14px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
#button-container button:hover {
background-color: #45a049;
}
#button-container button.active {
background-color: #007bff;
}