-
Notifications
You must be signed in to change notification settings - Fork 0
/
ttv.css
60 lines (55 loc) · 1.13 KB
/
ttv.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
*,*:after,*:before{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
body{
font-family: arial;
font-size: 16px;
margin: 0;
color: #000;
background-color: #228c97;
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;;
}
.container{
width: 680px;;
text-align: center;
padding: 30px;
background: #fff;
border-radius: 15px;
}
#inputText{
width: 400px;
height: 200px;
padding: 20px;
resize: none;
font-size: 20px;
font-family: arial;
box-shadow: 0 0 5px #8c8c8c ;
border: 3px solid #8c8c8c;
border-radius: 10px;
outline: 0;
}
.box{
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30px;
}
#voiceIco{
font-size: 150px;
width: 210px;
text-align:left;
}
#convert{
padding: 15px 35px;
border-radius: 5px;
border: 0;
font-size: 20px;
background: #05737f;
color: #fff;
}