forked from Darylxyx/JavaScript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (70 loc) · 1.23 KB
/
style.css
File metadata and controls
80 lines (70 loc) · 1.23 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
html, body, div, h1, h2, h3, h4, h5, h6, p, span, img, input, ul, li {
margin: 0;
padding: 0;
}
html, body {
font-family: Arial, Helvetica;
}
p {
width: 100%;
position: absolute;
bottom: 0;
margin-bottom: 10%;
font-size: 20px;
color: #f7f7f7;
text-align: center;
}
.container {
width: 100%;
max-width: 500px;
height: 100%;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.page {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: none;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url(./bg.jpg);
}
.choose {
}
.pic-area {
width: 100%;
height: 0;
padding-bottom: 120%;
background-color: #f7f7f7;
overflow: hidden;
box-shadow: 0 2px 10px 2px rgba(255,255,255,0.6);
}
.pic-area img {
-webkit-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
#files {
width: 0;
height: 0;
opacity: 0;
}
.show-area {
width: 60%;
height: 0;
padding-bottom: 72%;
position: absolute;
left: 50%;
margin-left: -30%;
margin-top: 25%;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
border-radius: 6px;
box-shadow: 0 0 10px 2px rgba(255,255,255,0.6);
}