-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (111 loc) · 2.88 KB
/
Copy pathstyles.css
File metadata and controls
128 lines (111 loc) · 2.88 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');
* {
font-family: 'Exo 2', sans-serif; /* Updated to Exo 2 font */
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #121212; /* Dark background for a sleek look */
color: #e0e0e0; /* Light text color for contrast */
font-size: 0.875rem; /* Slightly smaller text overall */
}
h1 {
text-align: center;
font-size: 2rem; /* Reduced font size */
color: #e0e0e0; /* Light text color */
margin: 2rem 0; /* Margin to push the title away from the edges */
}
#interface {
margin: auto;
width: 70vw;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
gap: 1rem; /* Space between buttons */
}
.control {
font-size: 1.25rem; /* Slightly smaller font size for buttons */
padding: 0.75rem 1.5rem;
background: #333; /* Dark button background */
color: #e0e0e0; /* Light text color */
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s, transform 0.3s;
}
.control:hover {
background: #444; /* Darker background on hover */
transform: scale(1.05);
}
#stop {
background: #d9534f; /* Distinct red color for stop button */
}
#stop:hover {
background: #c9302c; /* Darker red on hover */
}
#video-box {
margin: 2.5rem auto;
display: flex;
justify-content: center;
align-items: center;
}
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.6); /* Black with opacity */
padding-top: 60px;
}
.modal-content {
background-color: #333; /* Dark background for modal */
margin: 5% auto;
padding: 30px; /* Increased padding for more space */
border: 1px solid #444;
border-radius: 8px;
width: 80%; /* Could be more or less, depending on screen size */
max-width: 500px;
color: #e0e0e0;
}
.modal-content h2 {
margin-top: 0;
margin-bottom: 20px; /* Added margin to separate from input */
}
.modal-content input {
width: calc(100% - 22px); /* Adjusted width for padding and borders */
padding: 12px; /* Increased padding for better input area */
border: 1px solid #444;
border-radius: 5px;
margin-bottom: 20px;
background: #222;
color: #e0e0e0;
}
.modal-content button {
padding: 12px 24px; /* Increased padding for better button area */
background: #444;
border: none;
border-radius: 5px;
color: #e0e0e0;
cursor: pointer;
transition: background 0.3s;
}
.modal-content button:hover {
background: #555;
}
.close {
color: #e0e0e0;
float: right;
font-size: 1.5rem;
font-weight: bold;
}
.close:hover {
color: #fff;
text-decoration: none;
cursor: pointer;
}