-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiagnostics.less
176 lines (132 loc) · 3.29 KB
/
diagnostics.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
* DIAGNOSTICS.CSS
*
* Utility styles for debugging
* and diagnosing by Sean Juarez
*
*/
/*========== BACKGROUNDS ==========*/
// Gray
.bg { background-color: rgba(0,0,0,0.05); }
// Blue
.bg-b { background-color: rgba(30,144,255,0.15); }
// Light Blue
.bg-b-l { background-color: rgba(30,144,255,0.07); }
// Red
.bg-r { background-color: rgba(220,20,60,0.1) !important; }
// Light Red
.bg-r-l { background-color: rgba(220,20,60,0.05) !important; }
/*============ BORDERS ============*/
// Gray
.b { border: solid 1px rgba(0,0,0,0.3); }
// Blue
.b-b { border: solid 1px rgba(30,144,255,0.6); }
// Red
.b-r { border: solid 1px rgba(220,20,60,0.4); }
// Dashed
.b.dash,
.b-b.dash,
.b-r.dash { border-style: dashed; }
// Dotted
.b.dot,
.b-b.dot,
.b-r.dot { border-style: dotted; }
/*============ OUTLINES ============*/
// Gray
.o { outline: solid 1px rgba(0,0,0,0.3); }
// Blue
.o-b { outline: solid 1px rgba(30,144,255,0.6); }
// Red
.o-r { outline: solid 1px rgba(220,20,60,0.5); }
// Dashed
.o.dash,
.o-b.dash,
.o-r.dash { outline-style: dashed; }
// Dotted
.o.dot,
.o-b.dot,
.o-r.dot { outline-style: dotted; }
/*=========== BOX-SIZING ===========*/
// Border-Box
.box
{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/*============== ALL ==============*/
// Applies to ALL child elements
// Border
.b-all * { .b(); }
// Background
.bg-all * { .bg(); }
// Box-sizing
.box-all * { .box(); }
/*============= OTHER ==============*/
.works
{
.b-r();
.bg-r();
.box();
}
/*========= MEDIA QUERIES =========*/
// Styles for debugging responsive designs
// Media Query Mixin
.query(@size, @name)
{
@media only screen and (min-width: @size)
{
.media(@size, @name);
}
}
// Breakpoints
.media-queries()
{
.query(320px, "iPhone - Portrait");
.query(480px, "iPhone - Landscape");
.query(600px, "Kindle Fire - Portrait");
.query(768px, "iPad - Portrait");
.query(980px, "Kindle Fire - Landscape");
.query(1024px, "iPad - Landscape");
.query(1080px, "High Definition");
.query(1200px, "Desktop");
.query(1280px, "Desktop");
.query(1400px, "Widescreen");
}
// "Query Box"
.q-box
{
padding: 2px 7px 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
border-radius: 3px;
position: fixed;
bottom: 7px;
left: 7px;
z-index: 10000;
color: rgba(0, 0, 0, 0.6);
font-weight: bold;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: rgba(220, 220, 220, 0.7);
}
// Query
// - output media query
.media(@size, @device) { .q-box:after { content: "min-width: @{size}px"; } }
// Device
// - output query's corresponding device
.media(@size, @device) { .q-box.device:after { content: "@{device}"; } }
// Size
// - output query dimensions
.media(@size, @device) { .q-box.size:before { content: " (@{size}px)"; margin-left: 0.5em; } .q-box:after { float: left; } }
// English
// - output query plain english
.media(@size, @device) { .q-box.english:after { content: "@{device} and wider (@{size}px)"; } }
// Show Width
// - size q-box to show query's min-width
.media(@size, @device) { .q-box.show-width { width: @size; } }
// Retina
// - output "@2x"
@media screen and (-webkit-min-device-pixel-ratio: 2) { .retina:before { content: "@2x - "; } }
// OUTPUT MEDIA QUERIES
.media-queries();