UNPKG

1.56 kBtext/lessView Raw
1/* ==========================================================================
2 Default settings related to textual content.
3 ========================================================================== */
4
5@import url(http://fonts.googleapis.com/css?family=Oxygen:400italic,400,300,700);
6
7/**
8 * Set font-size variables
9 */
10@font-size: 1rem; // 16px
11@font-size-xxsm: @font-size * 0.6875; // 11px
12@font-size-xsm: @font-size * 0.75; // 12px
13@font-size-sm: @font-size * 0.875; // 14px
14@font-size-m: @font-size * 1.125; // 18px
15@font-size-l: @font-size * 1.25; // 20px
16@font-size-xl: @font-size * 1.5; // 24px
17@font-size-xxl: @font-size * 2; // 32px
18
19/**
20 * Address `font-family` inconsistency between `textarea` and other form
21 * elements.
22 */
23html,
24button,
25input,
26select,
27textarea {
28 font-family: 'Oxygen', sans-serif;
29}
30
31body {
32 color: @off-black;
33 font-size: @font-size;
34 line-height: 1.4;
35}
36
37/**
38 * Address font sizes and margins set differently in IE 6/7.
39 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
40 * and Chrome.
41 */
42h1,
43h2,
44h3,
45h4,
46h5,
47h6 {
48 margin: @spacing 0;
49}
50
51h1 {
52 font-size: @font-size-xxl;
53}
54
55h2 {
56 font-size: @font-size-xl;
57}
58
59h3 {
60 font-size: @font-size-l;
61}
62
63h4 {
64 font-size: @font-size-m;
65}
66
67h5 {
68 font-size: @font-size;
69}
70
71h6 {
72 font-size: @font-size-sm;
73}
74
75.header-with-rule {
76 border-bottom: 1px solid @light-gray;
77 padding-bottom: @spacing-xxsm;
78}
79
80/**
81 * Text alignment
82 */
83.text-left {
84 text-align: left;
85}
86
87.text-center {
88 text-align: center;
89}
90
91.text-right {
92 text-align: right;
93}
\No newline at end of file