blob: c728cfbf56d93eb763174b80956a62b865545f28 (
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
|
@import "compass/css3/background-size";
@import "variables";
* {
line-height: 1.3;
}
h2 {
font-weight: bold;
}
h2, h3 {
color: $gray-4;
}
q, blockquote {
font-weight: bold;
}
slides > slide {
color: $gray-4;
&.title-slide {
&:after {
content: '';
background: url(../../images/io2013/google-io-lockup-1.png) no-repeat 100% 50%;
@include background-size(contain);
position: absolute;
bottom: $slide-top-bottom-padding + 40;
right: $slide-top-bottom-padding;
width: 100%;
height: 90px;
}
hgroup {
h1 {
font-weight: bold;
line-height: 1.1;
}
h2, p {
color: $gray-4;
}
h2 {
margin-top: 0.25em;
}
p {
margin-top: 3em;
}
}
}
}
|