-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite.css
148 lines (127 loc) · 2.92 KB
/
site.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono);
body,
p {
padding: 0;
margin: 0;
}
body {
background: #272726;
}
label {
text-align: left;
font-family: Helvetica, sans-serif;
font-size: 1.25em;
color: #777776;
display: block;
}
div#controls {
padding: 3em;
max-width: 1200px;
margin: 0 auto;
}
div#controls div {
float: left;
}
div#controls div#call-controls,
div#controls div#info {
width: 16em;
margin: 0 1.5em;
text-align: center;
}
div#controls div#info div#output-selection {
display: none;
}
div#controls div#info a {
font-size: 1.1em;
color: khaki;
text-decoration: underline;
cursor: pointer;
}
div#controls div#info select {
width: 300px;
height: 60px;
margin-bottom: 2em;
}
div#controls div#info label {
width: 300px;
}
div#controls div#call-controls div#volume-indicators {
display: none;
padding: 10px;
margin-top: 20px;
width: 500px;
text-align: left;
}
div#controls div#call-controls div#volume-indicators > div {
display: block;
height: 20px;
width: 0;
}
div#controls p.instructions {
text-align: left;
margin-bottom: 1em;
font-family: Helvetica-LightOblique, Helvetica, sans-serif;
font-style: oblique;
font-size: 1.25em;
color: #777776;
}
div#controls div#info #client-name {
text-align: left;
margin-bottom: 1em;
font-family: "Helvetica Light", Helvetica, sans-serif;
font-size: 1.25em;
color: #777776;
}
div#controls button {
width: 15em;
height: 2.5em;
margin-top: 1.75em;
border-radius: 1em;
font-family: "Helvetica Light", Helvetica, sans-serif;
font-size: .8em;
font-weight: lighter;
outline: 0;
}
div#controls button:active {
position: relative;
top: 1px;
}
div#controls div#call-controls {
display: none;
}
div#controls div#call-controls input {
font-family: Helvetica-LightOblique, Helvetica, sans-serif;
font-style: oblique;
font-size: 1em;
width: 100%;
height: 2.5em;
padding: .5em;
display: block;
}
div#controls div#call-controls button {
color: #fff;
background: 0 0;
border: 1px solid #686865;
}
div#controls div#call-controls button#button-hangup {
display: none;
}
div#controls div#log {
border: 1px solid #686865;
width: 35%;
height: 9.5em;
margin-top: 2.75em;
text-align: left;
padding: 1.5em;
float: right;
overflow-y: scroll;
}
div#controls div#log p {
color: #686865;
font-family: 'Share Tech Mono', 'Courier New', Courier, fixed-width;
font-size: 1.25em;
line-height: 1.25em;
margin-left: 1em;
text-indent: -1.25em;
width: 90%;
}