-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (51 loc) · 899 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
main{
height: 100vh;
width: auto;
border-radius: 10px;
display: flex;
align-items: center;
flex-direction: column;
}
.title{
font-size: 2rem;
font-family: Arial, Helvetica, sans-serif;
margin: 10px;
font-weight: bold;
}
.text-section{
width: 250px;
margin: 5px;
display: flex;
flex-direction: column;
}
#text{
height: 3rem;
resize: none;
border-radius: 0.3rem;
}
.voice-section{
width: 250px;
margin: 5px;
display: flex;
flex-direction: column;
}
#voice{
height: 2rem;
border: none;
outline: 2px solid grey;
border-radius: 0.4rem;
padding: 0px 10px;
}
.text-title{
font-family: Arial, Helvetica, sans-serif;
}
.submit{
margin: 30px;
background-color: #3d6ef5;
width: 200px;
height: 40px;
font-size: 1.2rem;
border: none;
color: white;
border-radius: 0.3rem;
}