-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (75 loc) · 1.37 KB
/
style.css
File metadata and controls
86 lines (75 loc) · 1.37 KB
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
body {
text-align: center;
font-family: 'Roboto', sans-serif;
width: 100%;
height: 100%;
overflow-x: hidden;
}
.content{
display: block;
width: 100%;
height: 100%;
}
.holder{
display: inline-block;
line-height: 0;
margin: 0 auto;
border: 10px #fff solid;
border-radius: 15px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
position: relative;
}
#video{
float: left;
background-color: #666;
}
#canvas{
display: none;
position: absolute;
top: 0px;
left: 0px;
}
.buttons{
margin-top: 20px;
}
button{
width: 140px;
height: 45px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 500;
color: #000;
background-color: #fff;
border: none;
border-radius: 45px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
outline: none;
margin: 0 10px;
}
button:not([disabled]):hover{
background-color: #49BEFF;
box-shadow: 0px 15px 20px rgba(73,190,255,0.5);
color: #fff;
transform: translateY(-5px);
}
button:disabled{
color: #999;
}
#savedImages{
display: inline-block;
margin-top: 30px;
text-align: left;
max-width: 1020px;
background-color: #EDF9FF;
border-radius: 5px;
}
#savedImages h1, #savedImages h2, #savedImages h3{
color: red;
padding: 0 20px;
}
#savedImages img {
margin: 5px;
}