This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2012-01-07 03:25:13 +00:00
|
|
|
/*
|
|
|
|
Theme Name: _s
|
|
|
|
|
2016-10-20 21:06:39 +00:00
|
|
|
Adding support for languages written in a Right To Left (RTL) direction is easy -
|
2012-01-07 03:25:13 +00:00
|
|
|
it's just a matter of overwriting all the horizontal positioning attributes
|
|
|
|
of your CSS stylesheet in a separate stylesheet file named rtl.css.
|
|
|
|
|
2016-10-20 21:06:39 +00:00
|
|
|
https://codex.wordpress.org/Right-to-Left_Language_Support
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
body {
|
|
|
|
direction: rtl;
|
|
|
|
unicode-bidi: embed;
|
|
|
|
}
|
2016-10-20 21:06:39 +00:00
|
|
|
*/
|