forked from ywalia01/iheard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
142 lines (126 loc) · 2.37 KB
/
app.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
html,
body {
background: #1d3354 center center no-repeat;
opacity: 0.879;
background-size: cover;
display: flex;
overflow: hidden;
color: black;
height: 100%;
width: 100%;
scroll-behavior: smooth;
}
.app {
/* background-color: #467599; */
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding-top: 20px;
height: 100%;
width: 50%;
}
#msg {
visibility: hidden;
color: red;
font-weight: bold;
font-size: 22px;
font-family: Verdana;
margin: 15px auto 15px auto;
}
button {
text-transform: uppercase;
color: #9ed8db;
padding: 7px 10px;
border-radius: 50px;
border: 2.5px solid #9ed8db;
font-size: 18px;
font-weight: bold;
background: transparent;
transition: 0.4s ease-in-out;
margin: 30px 5px;
}
button:hover {
background: #9ed8db;
cursor: pointer;
color: black;
}
.audio-controls {
display: flex;
align-items: center;
padding-top: 20px;
justify-content: center;
}
.audio-controls button {
margin: 0px 5px;
}
canvas {
border-radius: 50px;
background-color: black;
}
select {
text-transform: uppercase;
color: #9ed8db;
padding: 5px 10px;
border-radius: 50px;
border: 2.5px solid #9ed8db;
font-size: 18px;
font-weight: bold;
background: transparent;
transition: 0.4s ease-in-out;
margin: 30px 5px;
height: 40px;
}
select:hover {
background: #9ed8db;
cursor: pointer;
color: black;
}
a {
text-decoration: none;
color: inherit;
}
audio {
height: 40px;
}
.app2 {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding-top: 20px;
height: 100%;
width: 50%;
}
.app2_img1 {
/* margin-bottom: 55px; */
padding: 20px;
width: 600px;
height: 390px;
}
#resultText {
margin: 30px;
padding: 30px;
/* visibility: hidden; */
font-size: 50px;
color: #9ed8db;
}
@media (max-width: 768px) {
body {
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding-top: 20px;
height: 100%;
width: 100%;
}
}