-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
66 lines (57 loc) · 1.14 KB
/
index.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
html, body {
margin: 0;
padding: 0;
font-family: Verdana, sans-serif;
font-size: 20px;
background-color: hsl(0, 0%, 93%);
height: 100%;
overflow: scroll;
}
body > main {
width: 500px;
margin: 20px auto;
}
body > main > h1 {
text-align: center;
}
a {
text-decoration: none;
}
input[type=text], input[type=tel] {
display: block;
width: 100%;
box-sizing: border-box;
}
div.form-field {
margin-bottom: 10px;
}
div#call-button {
margin-top: 50px;
text-align: center;
}
span#connect {
position: relative;
}
cvg-webrtc-button > svg {
display: block;
height: 25px;
}
cvg-webrtc-button::part(trigger) {
border: 0;
color: hsl(0, 0%, 80%);
fill: hsl(0, 0%, 80%);
background-color: hsl(120, 100%, 15%);
padding: 10px 20px;
border-radius: 4px;
}
cvg-webrtc-button::part(trigger-enabled):hover {
background-color: hsl(120, 100%, 30%);
}
cvg-webrtc-button::part(trigger-enabled):active {
color: hsl(0, 0%, 100%);
fill: hsl(0, 0%, 100%);
}
cvg-webrtc-button::part(trigger-disabled) {
background-color: hsl(0, 100%, 20%);
text-decoration: line-through;
}