-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (85 loc) · 1.71 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
/* Starter CSS by RCNEIL */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
body {
margin:0px;
padding:0px;
font-family: 'Roboto', sans-serif;
background:#fff;
color:#454545;
}
.container {
float:none;
clear:both;
margin:0px auto;
padding:0px;
width:100%;
height:auto;
}
.row {
float:none; clear:both; margin:0px auto; padding:0px;
width:100%; height:auto;
max-width:1080px;
}
/*UNIVERSAL SPAN SELECTOR */
div[class*='span'] {
float:left;
margin:0px auto;
padding:24px;
height:auto;
box-sizing: border-box;
}
.span5 { width:5%; }
.span10 { width:10%; }
.span15 { width:15%; }
.span20 { width:20%; }
.span25 { width:25%; }
.span30 { width:30%; }
.span33 { width:33%; }
.span35 { width:35%; }
.span40 { width:40%; }
.span45 { width:45%; }
.span50 { width:50%; }
.span55 { width:55%; }
.span60 { width:60%; }
.span65 { width:65%; }
.span66 { width:66%; }
.span70 { width:70%; }
.span75 { width:75%; }
.span80 { width:80%; }
.span85 { width:85%; }
.span90 { width:90%; }
.span100 { width:100%; }
.text-center { text-align:center; }
.container.flex-container.gallery-container {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
}
.gallery-container a {
flex: 0 0 25%;
box-sizing:border-box;
padding: 12px;
}
.gallery-container img {
display:block;
width:100%;
height:auto;
max-width:100%;
}
.fancybox-caption-wrap {
padding: 64px 12vw;
transition:opacity .25s,visibility 0s, bottom 1s !important;
bottom:-100vh;
}
.fancybox-caption-wrap.toggled {
bottom:0;
}
.fancybox-caption {
font-size:24px;
line-height:32px;
text-align:center;
}
button.fancybox-button.fancybox-button--toggleCaption {
width: auto;
}