-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.css
69 lines (64 loc) · 1.34 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
67
68
69
html, body {
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: 600;
text-align: center;
background: #275480;
padding-bottom: 50px;
}
/* keep the webcam snapper video hidden */
camera {
display: none;
}
/* Person picture and video cards */
.person {
background: rgb(94, 94, 94); /* same as grayscale respoke logo */
color: #33699E;
border: 0;
border-bottom: 3px solid #1C364E;
width: 320px;
height: 240px;
display: inline-block !important;
margin: 10px;
border-top-left-radius: 40px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 40px;
overflow-x: hidden;
overflow-y: hidden;
}
.img, video, .person>div {
width: 100%;
height: auto;
margin: 0;
padding: 0;
}
img {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
}
video {
border-top-left-radius: 40px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 40px;
}
/* Footer */
.respoke, .github, .instructions {
position: fixed;
bottom: 8px;
color: #ccc !important;
text-decoration: none;
}
.github {
left: 13px;
}
.respoke {
right: 13px;
}
.instructions {
right: 50%;
margin-right: -100px;
width: 200px;
font-weight: normal;
}