-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (73 loc) · 1.34 KB
/
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
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
body{
background-color: #333;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
min-height: 30rem;
min-width: 20%;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 20px rgb(1, 255, 179);
}
textarea{
overflow-wrap: break-word;
min-height: 7rem;
min-width: 10%;
/* max-width: fullscreen; */
display: flex;
flex-grow: 1;
padding: 4rem;
margin-bottom: 10px;
border: 2px solid #1691a7;
border-radius: 3px;
resize:both;
border-radius: .4rem;
font-size: 1.3rem;
font-family: 'Courier New', Courier, monospace;
color: #000;
}
@media screen and (max-width: 768px){
.container{
width: 90%;
}
textarea{
width: 60%;
}
}
textarea:visited, textarea:focus, textarea:active, textarea:hover{
border: 2px solid #1691a7;
}
.btn{
padding: .7rem;
}
.speakerBtn, .stopBtn{
margin-right: 10px;
margin-bottom: 10px;
cursor: pointer;
}
.speakerBtn{
background-color: rgb(0, 119, 128);
color:white;
font-size: medium;
border: none;
padding:4px 10px;
border-radius: 3px;
}
.stopBtn{
background-color: red;
color:white;
font-size: medium;
border: none;
padding:4px 10px;
border-radius: 3px;
}