forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjumbotron.scss
62 lines (54 loc) · 971 Bytes
/
jumbotron.scss
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
.jumbotron {
background-color: transparent;
position: absolute;
left: 0;
right: 0;
margin-right: auto;
margin-left: auto;
padding: 0;
margin-bottom: 0;
display: flex;
align-items: center;
top: $mobile_header_height;
@include desktop {
height: 550px;
top: $desktop_header_height;
}
.jumbotron-content {
display: flex;
align-items: center;
}
.lead {
font-weight: 400;
letter-spacing: 0.25px;
}
h1 {
font-size: rem(40px);
text-transform: uppercase;
font-weight: lighter;
letter-spacing: 1.08px;
margin-bottom: rem(10px);
line-height: 1.05;
@include desktop {
font-size: rem(72px);
}
}
p {
font-size: rem(18px);
margin-bottom: rem(20px);
@include desktop {
width: 50%;
}
}
&.on-dark-background {
h1, p {
color: $white;
}
}
.btn {
padding-top: rem(9px);
@include desktop {
margin-top: rem(10px);
}
}
}