-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtl.css
51 lines (50 loc) · 1.17 KB
/
rtl.css
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
Theme Name: BC Consulting
Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
https://codex.wordpress.org/Right-to-Left_Language_Support
*/
body {
direction: rtl;
unicode-bidi: embed;
text-align:right;
}
ol, ul{
padding: 0px;
}
#top-bar-wrap ul, #top-bar-wrap ol{
padding: 0px;
}
.ms-auto {
margin-right: auto !important;
margin-left: 0px!important;
}
.bc-blog-post .entry-meta .avatar_round{
left: 20px;
right: auto;
}
.bc-blog-post .entry-meta li i{
margin-right: 0px;
margin-left: 10px;
}
.widget-title::before, #secondary .wp-block-heading::before, #colophon .widget .widget-title::before {
left: auto;
right:0px;
}
#secondary .widget li:hover,
#secondary ol.wp-block-latest-comments{
padding-left: 0px;
padding-right:10px;
}
#secondary .widget ul, #colophon .widget ul {
padding-right:25px;
padding-left:0px;
}
.sidebar .widget li::before, #colophon .widget li::before {
left: auto;
right: -26px;
}
.text-end {
text-align:left!important;
}