aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/css/media.css
blob: 5f7267fa9a46d1ee20a13e90d1c54ad919c0bc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@media screen {
	.v-view {
		overflow: visible;
	}
	.details {
		font-size: 1pt;
		font-weight: bold;
	}
	width: 100%;
}

@media screen and (max-width: 480px) {
	.abc {
		background: red;
	}
}