mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Bud Parr
18.45.2017 d68e01a86901aa5bae222f30e2d64c48b23cde0f
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
/*
 
   FONT STYLE
   Docs: http://tachyons.io/docs/typography/font-style/
 
   Media Query Extensions:
     -ns = not-small
     -m  = medium
     -l  = large
 
*/
 
.i         { font-style: italic; }
.fs-normal { font-style: normal; }
 
@media (--breakpoint-not-small) {
  .i-ns       { font-style: italic; }
  .fs-normal-ns     { font-style: normal; }
}
 
@media (--breakpoint-medium) {
  .i-m       { font-style: italic; }
  .fs-normal-m     { font-style: normal; }
}
 
@media (--breakpoint-large) {
  .i-l       { font-style: italic; }
  .fs-normal-l     { font-style: normal; }
}