-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.less
116 lines (83 loc) · 2.72 KB
/
style.less
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
Theme Name: 320semanticgs
Theme URI: http://320semanticgs.mattbailey.co
Description: A responsive, HTML5, starter theme for WordPress, based on 320 And Up and semantic.gs.
Author: Matt Bailey
Author URI: http://www.mattbailey.co
Version: 1.0
*/
/* ============================================================
320 and Up by Andy Clarke
Version: 3.0
URL: http://stuffandnonsense.co.uk/projects/320andup/
Apache License: v2.0. http://www.apache.org/licenses/LICENSE-2.0
============================================================ */
// 1. ROOT ==============================
// CSS reset
@import "less/reset.less";
// Variables, mixins and semantic.gs
@import "less/variables.less";
@import "less/mixins.less";
@import "less/grid.less"; // Semantic.gs for LESS: http://lesscss.org/
// Site wide styles (html, body)
@import "less/site.less";
// 2. TYPOGRAPHY ==============================
// Block level (h1, p) and text-level (em, strong) type
@import "less/typography.less";
// 3. COLOUR ==============================
// Colour interaction semantics
@import "less/colour.less";
// 4. TEXTURE ==============================
// Alerts, badges, boxes and gradients
@import "less/texture.less";
// Font Awesome icon fonts (optional)
@import "less/font-awesome.less";
// 5. ELEMENTS ==============================
// Figures, images and other elements
@import "less/elements.less";
// Standard form controls
@import "less/forms.less";
// Button styles (optional)
@import "less/buttons.less";
// Tables
@import "less/tables.less";
// 6. LAYOUT ==============================
// Page level layout styles (banner, navigation, content, contentinfo)
@import "less/page.less";
// 7. VENDOR-SPECIFIC ==============================
// 8. MODERNIZR ==============================
// @import "less/modernizr.less";
// 9. TEMPLATE SPECIFICS ==============================
// 10. MEDIA QUERIES ==============================
@media print {
@import "less/print.less";
}
// 480px
@media only screen and (min-width: 480px) {
@import "less/480.less";
}
// 600px
@media only screen and (min-width: 600px) {
@import "less/600.less";
}
// 768px
@media only screen and (min-width: 768px) {
@import "less/768.less";
}
// 992px
@media only screen and (min-width: 992px) {
@import "less/992.less";
}
// 1382px
@media only screen and (min-width: 1382px) {
@import "less/1382.less";
}
// 2x
@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
@import "less/2x.less"; }
// 11. UPSTARTS ==============================
//@import "less/upstarts/320andup-modules/upstart.less";
//@import "less/upstarts/320andup-panels/upstart.less";