blob: b8d2e551561bede9d07d5b946c0b5f896e57b181 (
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
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
|
@import "base";
@import "../ui/var";
#promo-wrapper {
padding-top: 50px;
background-color: @headerBgColor;
}
#promo-logo {
img {
max-width: 250px;
}
margin-right: 50px;
padding-bottom: 50px;
}
#promo-content {
color: #FFF;
margin-left: 300px;
h1,
h2 {
font-family: 'PT Sans Narrow', sans-serif;
line-height: 60px;
margin-bottom: 0;
text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 96px;
line-height: 96px;
margin-bottom: 30px;
}
h2 {
font-size: 52px;
line-height: 70px;
font-weight: normal;
}
}
#promo-form {
padding: 40px 0;
.ipt-large {
border: none;
border-radius: 4px;
font-size: 18px;
&:focus {
box-shadow: 0 0 3px #FFF;
}
margin-right: 12px;
}
.btn-large {
border-radius: 4px;
font-size: 18px;
margin-right: 12px;
}
}
#promo-social {
padding-bottom: 60px;
.qq{
box-shadow: 0 0 1px #1c6399;
}
}
#feature-wrapper {
font-family: Lato, sans-serif;
font-size: 18px;
padding: 50px 0 100px 0;
.octicon {
color: @btnRedColor;
font-size: 60px;
height: 60px;
width: 60px;
line-height: 60px;
margin-right: 12px;
vertical-align: middle;
display: inline-block;
}
b {
color: #000;
font-size: 24px;
display: inline-block;
line-height: 60px;
}
p {
margin: 1em 0;
line-height: 40px;
padding-right: 30px;
}
a {
color: @btnRedColor;
&:hover {
color: @btnHoverRedColor;
}
}
.grid-1-2 {
margin-bottom: 30px;
}
}
|