UNPKG

862 BCSSView Raw
1/*
2
3 TEXT DECORATION
4 Docs: http://tachyons.io/docs/typography/text-decoration/
5
6
7 Media Query Extensions:
8 -ns = not-small
9 -m = medium
10 -l = large
11
12*/
13
14.strike { text-decoration: line-through; }
15.underline { text-decoration: underline; }
16.no-underline { text-decoration: none; }
17
18
19@media (--breakpoint-not-small) {
20 .strike-ns { text-decoration: line-through; }
21 .underline-ns { text-decoration: underline; }
22 .no-underline-ns { text-decoration: none; }
23}
24
25@media (--breakpoint-medium) {
26 .strike-m { text-decoration: line-through; }
27 .underline-m { text-decoration: underline; }
28 .no-underline-m { text-decoration: none; }
29}
30
31@media (--breakpoint-large) {
32 .strike-l { text-decoration: line-through; }
33 .underline-l { text-decoration: underline; }
34 .no-underline-l { text-decoration: none; }
35}