blob: 4a5174cec083f607f6c7ee9a09a0af9c114d993e (
plain)
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
|
.content {
padding-top: 65px;
padding-bottom: 100px;
}
.footer{
position: fixed;
bottom: 0;
right: 0;
left: 0;
color: white;
font-size:small;
background-color: #292c2f;
box-sizing: border-box;
width: 100%;
font: bold 12px;
}
html, body{
margin:0;
padding:0;
height:100%;
}
#container{
min-height: 100%;
position: relative;
}
#header{
}
#body{
padding: 10px;
padding-bottom: 60px:
}
.gallery{
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-width: 33%;
-moz-column-width: 33%;
column-width: 33%; }
.gallery .pics {
-webkit-transition: all 350ms ease;
transition: all 350ms ease; }
.gallery .animation {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
@media (max-width: 450px) {
.gallery {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
-webkit-column-width: 100%;
-moz-column-width: 100%;
column-width: 100%;
}
}
@media (max-width: 400px) {
.btn.filter {
padding-left: 1.1rem;
padding-right: 1.1rem;
}
}
|