forked from heiko-hotz/gemini-multimodal-live-dev-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (106 loc) · 1.92 KB
/
style.css
File metadata and controls
118 lines (106 loc) · 1.92 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
background: #000;
position: relative;
display: flex;
flex-direction: column;
}
.controls {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 20px;
z-index: 1000;
padding: 15px;
background: rgba(0, 0, 0, 0.5);
border-radius: 30px;
backdrop-filter: blur(10px);
}
.controls button {
width: 60px;
height: 60px;
border-radius: 50%;
border: none;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(10px);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
transition: all 0.3s ease;
}
.controls button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.controls button:active {
transform: scale(0.95);
}
.material-symbols-outlined {
font-size: 28px;
}
.video-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
background: rgba(0, 0, 0, 0.9);
}
video {
width: 100%;
height: 100%;
object-fit: contain;
background: #000;
}
video:not(.hidden) {
display: block !important;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
.function-info {
position: fixed;
top: 60px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
width: 90%;
max-width: 800px;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 15px;
border-radius: 10px;
font-family: monospace;
white-space: pre-wrap;
word-break: break-all;
backdrop-filter: blur(10px);
}
.main-title {
text-align: center;
font-size: 2.0rem;
margin: 0.5rem 0;
padding: 0 20px;
color: white;
font-family: 'Inter', sans-serif;
font-weight: 300;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
z-index: 1001;
position: relative;
line-height: 1.2;
}