mirror of
https://git.theinfopunk.com/punk/thewwwdotcom-blog.git
synced 2026-05-17 12:49:10 -04:00
18 lines
294 B
SCSS
18 lines
294 B
SCSS
@charset "UTF-8";
|
|
|
|
* {
|
|
font-family: inherit;
|
|
}
|
|
|
|
body {
|
|
@include ltr {
|
|
font-family: 'PingHei', 'PingFang SC', 'Helvetica Neue', 'Work Sans', 'Hiragino Sans GB', sans-serif;
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
@include rtl {
|
|
font-family: 'Tajawal', sans-serif;
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|