-
Notifications
You must be signed in to change notification settings - Fork 15
/
style.css
123 lines (121 loc) · 2.17 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
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
body {
background: #fafafa;
padding: 0;
margin: 0;
color: #000a12;
font-family: 'Roboto', sans-serif;
overflow-x: hidden;
}
a {
color: #3a4451;
}
video {
position: absolute;
top: 0;
left: 0;
z-index: -1;
/* Mirror the local sourceVideo */
transform: scale(-1, 1); /*For Firefox (& IE) */
-webkit-transform: scale(-1, 1); /*for Chrome & Opera (& Safari) */
width: 70%;
height: auto;
}
canvas{
display: none;
position: relative;
top: 0;
left: 0;
z-index:0;
width: 70%;
}
div#content{
position: relative;
float: left;
width: 70%;
max-width: 600px;
margin: 10px 10px 0;
padding: 30px;
}
div#dashboard{
position: absolute;
float: right;
top: 0;
right: 0;
width: 30%;
height: 100%;
background-color: #546e7a;
color: #eceff1;
}
div#dashboardContent {
padding: 30px;
}
div#credits{
position: absolute;
float: left;
bottom: 0;
width: 70%;
background: #819ca9;
}
div#creditContent {
padding: 30px;
}
div#usageNoteSide{
margin-top: 30px;
}
p, h4{
margin-top: 5px;
margin-bottom: 5px;
}
button#start{
font-size: x-large;
padding: 30px;
margin: 20px 0 20px 0;
align-self: center;
color: #ffffff;
background: #00838f;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
button{
cursor: pointer;
}
button#reset{
font-size: medium;
margin-top: 20px;
display: none;
}
div#loader {
display: none;
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
margin-left: 30%;
margin-top: 10%;
margin-bottom: 10%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media (max-width: 1100px) {
div#dashboard{
position: relative;
float: left;
height: auto;
width: 100%;
}
video {
width: 100%;
}
div#credits{
width: 100%;
position: relative;
float: left;
margin-top: 0;
}
}