-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGallery.css
96 lines (83 loc) · 1.3 KB
/
Gallery.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
#header {
text-align: center;
}
.container {
width: 90%;
}
.picContainer {
width: 25%;
height: 0;
padding-bottom: 25%;
position: relative;
background-color: gainsboro;
display: inline-block;
margin: 2%;
vertical-align: middle;
}
.pic {
}
.tall {
height: 100%;
display: block;
margin-left: auto;
margin-right: auto;
}
.wide {
width: 100%;
display: block;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
}
.FooterSection {
text-align: right;
margin-right: 15%;
}
#addDialog {
border: solid 1px;
position: fixed;
width: 20%;
margin-top: 5%;
margin-right: 40%;
margin-left: 40%;
text-align: center;
padding-right: 5%;
padding-left: 5%;
padding-bottom: 1%;
background: white;
z-index: 2;
visibility: hidden;
}
#picView {
margin: 3%;
height: 60%;
padding: 3%;
position: fixed;
left: 30%;
z-index: 1;
border: solid 1px;
background: white;
visibility: hidden;
}
#picViewImg {
max-height: 100%;
max-width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
}
.clickable {
color: blue;
}
#close {
margin: 0 auto;
width: 10px;
display: block;
}
#next {
float: right;
}
#prev {
float: left;
}