-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.29 KB
/
style.css
File metadata and controls
78 lines (69 loc) · 1.29 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
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f8f9fa;
text-align: center;
}
/* Header */
header {
background: #ff4d4d;
color: white;
padding: 20px;
font-size: 1.5em;
}
/* Main Section */
.hero {
padding: 50px 20px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 600px;
margin: 40px auto;
}
.hero h2 {
color: #ff4d4d;
}
.hero p {
font-size: 1.2em;
}
/* Emergency Button */
#emergencyButton {
background: #ff4d4d;
color: white;
border: none;
padding: 15px 30px;
font-size: 1.5em;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
#stopRecordingButton {
background: #ff4d4d;
color: white;
border: none;
padding: 15px 5px;
font-size: 1.3em;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
}
#emergencyButton:hover {
background: #cc0000;
}
/* Video Preview */
video {
width: 100%;
max-width: 500px;
margin-top: 20px;
border-radius: 10px;
border: 2px solid #ff4d4d;
}
/* Footer */
footer {
margin-top: 30px;
padding: 10px;
background: #222;
color: white;
}