-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (56 loc) · 909 Bytes
/
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
* {
box-sizing: border-box;
}
body {
display: grid;
place-content: center;
min-height: 100vh;
margin: 0;
}
main {
width: min(95vw, 400px);
}
h2 {
text-align: center;
color: rgb(36, 36, 36);
}
textarea {
width: 100%;
min-height: 150px;
padding: 10px;
border-color: #ccc;
border-radius: 5px;
outline-color: #ccc;
line-height: 1.5;
}
div {
display: flex;
justify-content: space-evenly;
}
button {
width: 100px;
height: 30px;
border-radius: 5px;
border: none;
background-color: #4CAF50;
color: white;
font-size: 15px;
cursor: pointer;
}
button#stopBtn {
background-color: #f44336;
}
#startBtn.listening {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}