-
Notifications
You must be signed in to change notification settings - Fork 0
/
hack2023.css
104 lines (90 loc) · 1.52 KB
/
hack2023.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
100
101
102
103
/*
* Optional: Makes the sample page fill the window.
*/
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family:Arial, Helvetica, sans-serif;
}
#logo {
height:80px;
position:absolute;
top:0;
left:0;
}
#address-input {
height:3em;
width:20%;
font-size:medium;
padding-left:5px;
border-radius:25px;
border-width:0px;
z-index:1;
}
#search-bar {
display:flex;
justify-content:center;
align-self:stretch;
}
#voice-button {
background-image: url("./mic.png");
background-size: contain;
background-repeat:no-repeat;
background-position:center;
background-color:white;
height: 100%;
width:2em;
border-radius:15px;
border-width:0px;
margin-left:3px;
}
#voice-button:hover {
background-color:lightgray;
}
#voice-button:active {
background-color:darkgray;
transition: background-color 0.1s;
height:98%;
width:1.96em;
}
#myVideo {
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
filter: blur(5px);
z-index:-1;
opacity:50%;
}
body {
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
/* opacity:40%; */
background-color:black;
z-index:-1;
/* opacity:100%; */
}
#output {
font-size:large;
padding-inline:15px;
text-align:justify;
height:50%;
width:50%;
background-color: white;
border-radius:8px;
padding-top:15px;
overflow:auto;
/* overflow-wrap: break-word; */
display:none;
}
#loading {
font-size:45px;
color:white;
display:none;
}