blob: 6d1a550a893b1d2066aa9c8a50670da9f404ac01 (
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
66
67
|
.links main {
@include constrain_narrow;
.link-title a {
color: $body_font;
font-weight: 400;
text-decoration: none;
}
@include breakpoint(beta) {
text-align: left;
}
}
.videos {
margin-top: 3em;
@include constrain_wide;
}
.photo-gallery {
margin: 0 auto;
margin-top: 1.5em;
position: relative;
width: 100%; /* for IE 6 */
img {
width: 100%;
max-width: 100%;
padding: 0;
}
h4 {
font-weight: 500;
margin: .5em 0;
letter-spacing: 1px;
font-size: 2em;
}
time { display: inline; }
a { color: inherit;}
@include breakpoint(alpha) {
div {
position: absolute;
bottom: 28%;
left: .35em;
text-align: left;
}
time {
margin-left: .5em;
}
h4 {
font-size: 2.75em;
margin-bottom: 0;
}
p {
line-height: 1.3;
max-width: 80%;
margin-left: .25em;
@include fontsize(18);
}
}
@include breakpoint(beta) {
div {
bottom: 22%;
}
}
@include breakpoint(gamma) {
div {
bottom: 20%;
}
@include constrain_wide;
}
}
|