-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexttospeech.css
79 lines (71 loc) · 1.4 KB
/
texttospeech.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
main{
background-color: #f9f5eb;
height: 500px;
width: 400px;
border-radius: 10px;
box-shadow: 0px 0px 20px 5px #eae3d2;
display:flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
}
.title{
font-size: 2rem;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #1c3879;
}
.text-section{
display: flex;
justify-content: center;
align-items:center;
flex-direction: column;
gap: 5px;
}
.text-title{
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #1c3879;
align-self:start;
}
#text{
height: 7rem;
width: 20rem;
border: none;
outline: 2px solid #1c3879;
border-radius: 0.5rem;
resize: none;
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
padding: 8px 10px;
}
.voice-section{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 5px;
}
.voice-title{
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #1c3879;
align-self: start;
}
#voice{
height: 3rem;
width: 20rem;
border:none;
outline: 2px solid #607eaa;
border-radius: 0.4rem;
padding: 0px 10px;
}
.submit{
background-color:#1c3879 ;
color:#607eaa;
width: 20rem;
height: 3rem;
border-radius: 0.3rem;
font-size:1.2rem;
border:none;
}