File: media.css

package info (click to toggle)
python-lesscpy 0.13.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,436 kB
  • sloc: python: 3,572; sh: 20; makefile: 8
file content (98 lines) | stat: -rw-r--r-- 1,414 bytes parent folder | download | duplicates (3)
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
@media screen,projection {
	html {
		background: #fffef0;
		color: #330000;
	}
	body {
		max-width: 35em;
		margin: 0 auto;
	}
}
@media print {
	.class {
		color: blue;
	}
	.class .sub {
		width: 42;
	}
	.top,
	header > h1 {
		color: #444444;
	}
}
@media screen {
	body {
		max-width: 480;
	}
}
@media all and (orientation:portrait) {
	aside {
		float: none;
	}
}
@media not screen and (color),print and (color) {
	body {
		margin: 0 auto;
	}
}
@media (min-width:768px)and (max-width:979px) {
	.hidden-desktop {
		display: none !important;
	}
}
@media (min-width:12px) {
	body {
		margin: 0 auto;
	}
}
@media (width:767px) {
	.visible-xs {
		display: block;
	}
}
@media only screen and (min--moz-device-pixel-ratio:2.5),only screen and (-o-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx) {
	background-size: 10px;
}
@media (width:768px) {
	.lead {
		font-size: 21px;
	}
}
@media (width:400px) {
	.one {
		font-size: 1.2em;
	}
}
@media (width:400px) and print and (color) {
	.one {
		color: blue;
	}
}
.two {
	width: 100px;
}
@media (width:400px) {
	.two {
		font-size: 1.2em;
	}
}
@media print and (color) {
	.two {
		color: blue;
	}
}
@media print {
	.visible {
		color: green;
	}
}
@media screen {
	.visible.visible-sm {
		color: green;
	}
}
@media (max-width:10px) {
	.navbar .form {
		margin-bottom: 5px;
	}
}