-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
64 lines (58 loc) · 1.11 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
#voice_control_ui{
display:none;
z-index:10000;
position: fixed;
background-color:white;
height:auto;
width:700px;
top: 30%;
left: 50%;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
margin-left: -350px;
padding-top: 30px;
padding-right: 30px;
padding-bottom: 30px;
padding-left: 30px;
}
#voice_control_command_text{
quotes: "\201C""\201D""\2018""\2019";
position: absolute;
left:135px;
top:51px;
font-family: "HelveticaNeue-Light", sans-serif;
color: black;
font-size: 30px;
-webkit-font-smoothing: antialiased;
text-rendering: geometricprecision;
}
#voice_control_response_text{
font-family: "HelveticaNeue-Light", sans-serif;
color: black;
font-size: 30px;
-webkit-font-smoothing: antialiased;
text-rendering: geometricprecision;
position:relative;
top:25px;
padding-bottom: 10px;
}
#voice_control_divider {
background: #ddd;
content: "";
display: block;
height: 1px;
position:relative;
top:15px;
width: 100%;
}
#voice_control_block_view {
position:fixed;
top:0;
left:0;
background:rgba(0,0,0,0.85);
z-index:5;
width:100%;
height:100%;
display:none;
}