-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (85 loc) · 1.71 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #1e1e1e;
color: #ffffff;
}
#container {
text-align: center;
background: #2e2e2e;
padding: 30px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
width: 80%;
max-width: 800px;
}
h1 {
margin-bottom: 20px;
font-size: 2.5em;
color: #61dafb;
}
#videos {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
video {
width: 48%;
border: 3px solid #61dafb;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
video:hover {
transform: scale(1.05);
}
#controls {
margin-top: 20px;
}
button {
padding: 12px 24px;
margin: 5px;
font-size: 18px;
cursor: pointer;
background-color: #61dafb;
color: #2e2e2e;
border: none;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.3s ease;
}
button:hover {
background-color: #21a1f1;
transform: translateY(-2px);
}
button:disabled {
cursor: not-allowed;
background-color: #555;
}
button:disabled:hover {
transform: none;
}
.hidden {
display: none;
}
#notifications {
position: fixed;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
background: #333;
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
text-align: center;
}
#callerId {
margin-bottom: 10px;
font-size: 1.5em;
color: #61dafb;
}