-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.css
More file actions
63 lines (53 loc) · 873 Bytes
/
Copy pathgallery.css
File metadata and controls
63 lines (53 loc) · 873 Bytes
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
#container {
display: flex;
flex-wrap: wrap;
margin: auto;
width: 80%;
}
#container .item:first-child {
display:none;
}
#container .item {
height: 150px;
width: 200px;
margin-bottom: 10px;
margin-right: 10px;
background-color: white;
display: inline-block;
}
#container .item img:hover {
opacity: .5;
}
#container .item .media {
max-width:100%;
max-height:100%;
}
#modal {
display: none;
position: fixed;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
#modal .modal-content {
margin-left: auto;
margin-right: auto;
width: 400px;
}
#close {
background-color: #FFF;
cursor: pointer;
display: block;
padding: 5px;
}
#row2 {
display: block;
}
#text_container {
background-color: #fff;
padding: 5px;
}