-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
59 lines (51 loc) · 1.02 KB
/
index.css
File metadata and controls
59 lines (51 loc) · 1.02 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
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}
.wrapper {
display: grid;
width: 60%;
padding: 3%;
margin: 0 auto;
grid-template-columns: repeat(3, 1fr);
}
.item {
background-color: #92a8d1;
padding: 10px;
}
#compile-button {
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
color: #fff;
background-color: #4CAF50;
border: none;
outline: none;
border-radius: 10px;
box-shadow: 0 9px #999;
}
#compile-button:hover {background-color: #3e8e41}
#compile-button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.input-output-wrapper {
background-color:#92a8d1;
margin: auto;
margin-top: 3%;
padding: 1% 1%;
width: 60%;
}
.audio-bar {
background-color: #0d98ba;
width: 60%;
margin: auto;
padding: 0.1% 0;
}
#input-method-div {
display: grid;
grid-template-columns: repeat(3, 1fr);
vertical-align: center;
}