-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (56 loc) · 965 Bytes
/
style.css
File metadata and controls
59 lines (56 loc) · 965 Bytes
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
body{
background-color: #ffff;
}
.container{
justify-content: center;
text-align: center;
}
h4{
color:1px solid black;
font-size: 40px;
}
@keyframes shadow-pulse
{
0% {
box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.2);
}
100% {
box-shadow: 0 0 0 35px rgba(255, 0, 0, 0);
}
}
#btnGiveCommand
{
position: absolute;
top:300px;
left: 40%;
margin: 40px;
width: 130px;
height: 130px;
font: 13px/130px 'Barlow Semi Condensed', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
color: #fff;
text-align: center;
background: white;
border-radius: 50%;
}
*:focus {
outline: 0 !important;
}
.fa-microphone{
color:red;
}
.inner-right{
float:right;
margin-right: 50px;
}
#message{
color:rgb(19, 17, 17);
font-size : 25px;
font-weight: bold;
height: 250px;
width:100%;
box-shadow: 0 0 10px 0 #bbb;
margin-top: none;
line-height: 25px;
}