forked from Lana-chan/webgbcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·118 lines (106 loc) · 2.33 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
html, body{
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
body {
background: url("bg.png");
text-align: center;
font: 12px sans-serif;
}
.centered {
text-align: center !important;
}
.maple-window {
margin: 5px;
vertical-align: top;
display: inline-block;
border-width: 35px 20px 20px 20px;
border-style: solid;
border-image: url("mac-frame.png") 30 40 22 22 fill repeat;
border-image-width: 30px 40px 22px 22px;
color: #000;
position: relative;
text-align: left;
font-size: 12px;
font-family: geneva, sans-serif;
min-width: 200px;
}
.maple-window a {
color: #9999cc;
text-shadow: none;
}
.maple-window a:hover {
color: #ccccff;
}
.maple-window-title {
position: absolute;
top: -31px;
text-align: center;
width: 100%;
left: 0;
}
.maple-window-title > span {
background: #ccc;
padding: 1px 5px 1px 5px;
font-size: 12px;
font-weight: bold;
font-family: chicago, sans-serif;
vertical-align: middle;
margin-right: 20px;
white-space: nowrap;
}
/*#camera {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}*/
#app-view {
height: 100%;
width: 100%;
image-rendering: optimizeSpeed; /* Older versions of FF */
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
image-rendering: pixelated; /* Awesome future-browsers */
-ms-interpolation-mode: nearest-neighbor; /* IE */
}
#camera-stream, #camera-output, #camera-view, .hidden {
display: none;
}
.button {
width: 200px;
background-color: black;
color: white;
font-size: 16px;
border-radius: 30px;
border: none;
padding: 15px 20px;
text-align: center;
box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
/*position: fixed;
bottom: 30px;
left: calc(50% - 100px);*/
}
.right {
float: right;
}
.modal {
position: absolute;
top: 0;
left: 0;
max-width: 80%;
max-height: 80%;
transform: translate(calc(50vw - 50%),calc(50vh - 50%));
}
#gif-img {
object-fit: scale-down;
max-width:100%;
display: block;
margin: auto;
}
#gif-buttons {
margin: .5em;
}