-
Notifications
You must be signed in to change notification settings - Fork 1
/
example-usage.less
74 lines (49 loc) · 1.73 KB
/
example-usage.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
@import url('less/less-media-queries.less');
/*Generic Mobile Device */
@media @genericMobile { /* STYLES GO HERE */ }
/*Generic Mobile Device */
@media @genericPhablet { /* STYLES GO HERE */ }
/*Generic Mobile Device */
@media @genericPhone { /* STYLES GO HERE */ }
/*Ipads */
@media @ipad { /* STYLES GO HERE */ }
/*Ipads Landscape */
@media @ipadLandscape { /* STYLES GO HERE */ }
/*Ipads Portrait */
@media @ipadPortrait { /* STYLES GO HERE */ }
/*Ipad 3 & 4 */
@media @ipadRetina { /* STYLES GO HERE */ }
/*Iphone 5 */
@media @iphoneFive { /* STYLES GO HERE */ }
/*Iphone retina*/
@media @iphoneRetina { /* STYLES GO HERE */ }
/*Iphones */
@media @iphone { /* STYLES GO HERE */ }
/*Iphone 4 and below landscape*/
@media @iphoneLandscape { /* STYLES GO HERE */ }
/*Iphone 4 and below portrait*/
@media @iphonePortrait { /* STYLES GO HERE */ }
/*Kindle Fire*/
@media @kindleFire { /* STYLES GO HERE */ }
/*Kindle Fire Portrait*/
@media @kindleFirePortrait { /* STYLES GO HERE */ }
/*Kindle Fire Landscape*/
@media @kindleFireLandscape { /* STYLES GO HERE */ }
/*Galaxy Nexus*/
@media @galaxyNexus { /* STYLES GO HERE */ }
/*Galaxy Nexus Portrait*/
@media @galaxyNexusPortrait { /* STYLES GO HERE */ }
/*Galaxy Nexus Landscape*/
@media @galaxyNexusLandscape { /* STYLES GO HERE */ }
/*Galaxy Nexus 7*/
@media @galaxyNexus7 { /* STYLES GO HERE */ }
/*Galaxy Nexus 7 Portrait*/
@media @galaxyNexus7Portrait { /* STYLES GO HERE */ }
/*Galaxy Nexus 7 Landscape*/
@media @galaxyNexus7Landscape { /* STYLES GO HERE */ }
/*Galaxy Note 2*/
@media @galaxyNote2 { /* STYLES GO HERE */ }
/*Galaxy Note 2 Portrait*/
@media @galaxyNote2Portrait { /* STYLES GO HERE */ }
/*Galaxy Note 2 Landscape*/
@media @galaxyNote2Landscape { /* STYLES GO HERE */ }