mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
27 lines
508 B
CSS
27 lines
508 B
CSS
/*
|
|
|
|
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; }
|
|
}
|