-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
76 lines (62 loc) · 1.1 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,
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
overflow: hidden;
}
button {
font-size: 16px;
}
div {
margin: 10px;
}
#container {
display: flex;
flex-direction: column;
align-items: center;
font-size: 16px;
/* height: 500px; */
justify-content: space-around;
margin: 0 auto;
width: 75%;
}
.header {
display: flex;
flex-direction: column;
align-items: center
}
#previewName {
font-size: 20px
}
#connectionLabel {
font-weight: lighter;
font-size: smaller;
display: inline-block
}
.inputsDiv {
display: flex;
max-width: 500px;
min-width: 45%;
}
#textArea {
width: 100%;
}
#answers {
height: 450px;
overflow: scroll;
}
#hidden {
text-align: center;
}
#speechButton {
color: black;
}
#speechButton:disabled {
color: rgba(16, 16, 16, 0.3)
}
#videoElement {
width: 250px;
height: 250px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}