-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_image.css
More file actions
76 lines (62 loc) · 1.19 KB
/
css_image.css
File metadata and controls
76 lines (62 loc) · 1.19 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
.image-wrap {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
margin-top: 0;
}
.image-wrap:first-of-type {
margin-bottom: 5em;
}
.image-wrap>div:first-of-type {
margin-right: 0;
}
.image-wrap.singles>div:first-of-type {
margin-right: 0;
}
.image-wrap>div {
max-width: 1200px;
}
.img-title {
font-size: 180%;
margin: 0 auto 1em;
/*color: #00C853;*/
text-transform: uppercase;
}
.image-wrap img {
transition: box-shadow 1s ease-in;
box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);
max-width: 100%;
}
.image-wrap img:hover {
box-shadow: 0 14px 18px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.22);
transition: box-shadow 1s ease-out;
}
.intro-content {
margin: 0;
}
@media (min-width: 800px) {
.intro-content {
margin: 1em 3.5em 1em;
}
}
.intro-content-rs {
margin: 0;
}
@media (min-width: 800px) {
.intro-content-rs {
margin: 3em auto;
width: 75%;
}
}
@media (min-width: 1180px) {
.image-wrap>div:first-of-type {
margin-right: 3em;
}
}
div.iframe-wrap {
margin: 0 auto;
text-align: center;
}
.misc-caption {
max-width: 1280px;
}