UNPKG

579 BCSSView Raw
1/*
2
3 FONT STYLE
4 Docs: http://tachyons.io/docs/typography/font-style/
5
6 Media Query Extensions:
7 -ns = not-small
8 -m = medium
9 -l = large
10
11*/
12
13.i { font-style: italic; }
14.fs-normal { font-style: normal; }
15
16@media (--breakpoint-not-small) {
17 .i-ns { font-style: italic; }
18 .fs-normal-ns { font-style: normal; }
19}
20
21@media (--breakpoint-medium) {
22 .i-m { font-style: italic; }
23 .fs-normal-m { font-style: normal; }
24}
25
26@media (--breakpoint-large) {
27 .i-l { font-style: italic; }
28 .fs-normal-l { font-style: normal; }
29}