-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
77 lines (66 loc) · 1.36 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
/* Dark mode styling */
body {
background-color: #1e1e1e;
color: #00bfae; /* Teal text */
font-family: 'Arial', sans-serif;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
h2, h3 {
color: #00bfae;
border-bottom: 1px solid #00bfae;
padding-bottom: 10px;
}
button {
background-color: #00bfae;
color: #1e1e1e;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #008c7a;
}
button:active {
background-color: #006e60;
}
button:disabled {
background-color: #444;
color: #888;
cursor: not-allowed;
}
pre {
background-color: #333;
color: #00bfae;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
white-space: pre-wrap;
word-wrap: break-word;
max-height: 200px;
}
/* Centering and resizing video */
#media {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
audio, video {
max-width: 100%;
border: 2px solid #00bfae;
border-radius: 5px;
margin-top: 10px;
}
video {
width: 50%; /* Set video to 50% of the container width */
}
#start, #stop {
display: inline-block;
margin-bottom: 20px;
}