-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtl.css
74 lines (66 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Theme Name: inx game
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;
}
.rd-navbar-static .rd-navbar-nav > li{
float:right;
}
.rd-navbar-social-icon{
right:auto;
left:0px;
}
.rd-navbar-static .rd-navbar-dropdown, .rd-navbar-static .rd-navbar-megamenu{
text-align:right;
}
.widget-title {
padding-left: 0px;
padding-right: 20px;
}
.widget-title::before,
.widget-title::after {
left:auto;
right:0px;
}
#content .inx-single-post ul.post-meta li{
padding-left:30px;
padding-right:0px;
}
#content .inx-single-post ul.post-meta li::after {
right:auto;
left:15px;
}
#content .post-meta-wrap .tb-cell.avatar {
padding-left: 20px;
padding-0: 0px;
}
#colophon.site-footer .social-list{
float:left;
}
a.ui-to-top{
right:auto;
left:20px;
}
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-dropdown .rd-navbar-dropdown {
left:auto;
right:100%;
}
.rd-navbar-static ul.rd-navbar-dropdown ul {
margin-left:0px;
margin-right:10px;
}
.rd-navbar-static ul.rd-navbar-dropdown ul li:first-child::before {
left:auto;
right:-8px;
border-top: 8px solid transparent;
border-left: 8px solid #232323;
border-bottom: 8px solid transparent;
border-right:none;
}