-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
130 lines (103 loc) · 1.6 KB
/
main.css
File metadata and controls
130 lines (103 loc) · 1.6 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
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
#video {
width:420px;
height:300px;
}
#photo1, #photo2, #photo3, #photo4{
width:140px;
height:185px;
/* filter: sepia(100%); */
}
.sepia {
filter: sepia(100%);
}
.grayscale {
filter: grayscale(100%);
}
.none {
filter: none;
}
#canvas {
display:none;
}
.camera {
width: 420px;
margin-top: 400px;
margin-left: 6px;
}
.output {
width: 140px;
height: 185px;
display:block;
margin-left: 85px;
margin-top: 11px
}
.first {
margin-top: 360px;
}
#startbutton {
display:block;
margin-left:auto;
margin-right:auto;
bottom:32px;
font-size: 20px;
z-index: 5;
font-family: 'Lobster', cursive;
}
.function-buttons {
margin-left: 25px;
margin-bottom: 15px;
}
body {
background-image: url("./images/photobooth1.png");
background-size: 1400px 1400px;
background-repeat: no-repeat;
background-position: top center;
}
.buttonz {
margin-top: 630px;
margin-left: 280px;
display: inline-block;
font-family: 'Lobster', cursive;
}
.titles{
margin-top: px;
margin-left: 35px
}
.photo-title {
width: 140px;
height: 85px;
word-wrap: break-word;
text-align: center;
font-family: "Lobster", cursive;
}
.title-button {
margin-top: 20px;
margin-left: 40px;
font-size: 20px;
}
.title-value {
margin-top: 70px;
margin-left: 20px;
border: 2px solid black;
}
.photos {
}
#image5 {
display: none;
}
@-webkit-keyframes flash {
0% { opacity: .3; }
100% { opacity: 1; }
}
@keyframes flash {
0% { opacity: .3; }
100% { opacity: 1; }
}
.flash {
opacity: 1;
-webkit-animation: flash 1s;
animation: flash 1s;
}
.convoblur {
filter: convoblur;
}