type.less 2.73 KB
Newer Older
1
/* Typography.less
2
 * Headings, body text, lists, code, and more for a versatile and durable typography system
3
 * ---------------------------------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
4
5


6
// BODY TEXT
7
// ---------
Jacob Thornton's avatar
Jacob Thornton committed
8
9

p {
10
  #font > .shorthand(normal,@basefont,@baseline);
11
  margin-bottom: @baseline / 2;
Jacob Thornton's avatar
Jacob Thornton committed
12
  small {
13
    font-size: @basefont - 2;
14
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
15
16
17
  }
}

18
19

// HEADINGS
20
// --------
Jacob Thornton's avatar
Jacob Thornton committed
21
22

h1, h2, h3, h4, h5, h6 {
23
  font-weight: bold;
24
  color: @grayDark;
Jacob Thornton's avatar
Jacob Thornton committed
25
  small {
26
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
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
  }
}
h1 {
  margin-bottom: @baseline;
  font-size: 30px;
  line-height: @baseline * 2;
  small {
    font-size: 18px;
  }
}
h2 {
  font-size: 24px;
  line-height: @baseline * 2;
  small {
    font-size: 14px;
  }
}
h3, h4, h5, h6 {
  line-height: @baseline * 2;
}
h3 {
  font-size: 18px;
  small {
    font-size: 14px;
  }
}
h4 {
  font-size: 16px;
  small {
    font-size: 12px;
  }
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 13px;
64
  color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
65
66
67
68
  text-transform: uppercase;
}


69
// COLORS
70
// ------
Jacob Thornton's avatar
Jacob Thornton committed
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
98
99
100
101
102
103
104
105
106
107
108
109
110

// Unordered and Ordered lists
ul, ol {
  margin: 0 0 @baseline 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: @baseline;
  color: @gray;
}
ul.unstyled {
  list-style: none;
  margin-left: 0;
}

// Description Lists
dl {
  margin-bottom: @baseline;
  dt, dd {
    line-height: @baseline;
  }
  dt {
    font-weight: bold;
  }
  dd {
    margin-left: @baseline / 2;
  }
}

111
// MISC
112
// ----
Jacob Thornton's avatar
Jacob Thornton committed
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131

// Horizontal rules
hr {
  margin: 0 0 19px;
  border: 0;
  border-bottom: 1px solid #eee;
}

// Emphasis
strong {
  font-style: inherit;
  font-weight: bold;
}
em {
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
}
.muted {
132
  color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
133
134
135
136
137
138
139
140
}

// Blockquotes
blockquote {
  margin-bottom: @baseline;
  border-left: 5px solid #eee;
  padding-left: 15px;
  p {
141
    #font > .shorthand(300,14px,@baseline);
Jacob Thornton's avatar
Jacob Thornton committed
142
143
    margin-bottom: 0;
  }
144
  small {
Jacob Thornton's avatar
Jacob Thornton committed
145
    display: block;
146
147
    #font > .shorthand(300,12px,@baseline);
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
    &:before {
      content: '\2014 \00A0';
    }
  }
}

// Addresses
address {
  display: block;
  line-height: @baseline;
  margin-bottom: @baseline;
}

// Inline and block code styles
code, pre {
  padding: 0 3px 2px;
  font-family: Monaco, Andale Mono, Courier New, monospace;
  font-size: 12px;
  .border-radius(3px);
}
code {
  background-color: lighten(@orange, 40%);
  color: rgba(0,0,0,.75);
Mark Otto's avatar
Mark Otto committed
171
  padding: 1px 3px;
Jacob Thornton's avatar
Jacob Thornton committed
172
173
174
175
}
pre {
  background-color: #f5f5f5;
  display: block;
176
  padding: (@baseline - 1) / 2;
Jacob Thornton's avatar
Jacob Thornton committed
177
178
179
  margin: 0 0 @baseline;
  line-height: @baseline;
  font-size: 12px;
180
  border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
181
182
  border: 1px solid rgba(0,0,0,.15);
  .border-radius(3px);
183
  white-space: pre;
Jacob Thornton's avatar
Jacob Thornton committed
184
  white-space: pre-wrap;
185
186
  word-wrap: break-word;

187
}