-
Notifications
You must be signed in to change notification settings - Fork 2
/
rtl.css
84 lines (78 loc) · 2.09 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
75
76
77
78
79
80
81
82
83
84
/*
Theme Name: Business Consultant Finder
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;
text-align:right;
unicode-bidi: embed;
}
#top-bar .col-md-9{
text-align:right;
}
#top-bar .col-md-3{
text-align:left;
}
#top-bar ul,
.header-widget-container{
float:left;
}
.rd-navbar-brand{
float:right;
}
.top-appoinment{
left:0px;
right:auto;
}
a.ui-to-top{
right:auto;
left:0px;
}
.sidebar .widget li::before, #footer-widget .widget li::before {
left:auto;
right:0px;
}
.sidebar li, #footer-widget li{
padding-left:0px;
padding-right:30px;
}
h4.widget-title{
text-align:right;
}
#secondary li::after, #footer-widget li::after {
background: -moz-radial-gradient(right, ellipse cover, rgba(197, 202, 213, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
background: -webkit-radial-gradient(right, ellipse cover, rgba(197, 202, 213, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
background: radial-gradient(ellipse at right, rgba(197, 202, 213, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
}
.blog-loop-wrp .item::before, .ellipse-bottom::after {
left:auto;
right:0px;
}
.blog-loop-wrp .item::after, .ellipse-left::after {
background: -moz-radial-gradient(right, ellipse cover, rgba(197, 202, 213, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
background: -webkit-radial-gradient(right, ellipse cover, rgba(197, 202, 213, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
background: radial-gradient(ellipse at right, rgba(197, 202, 213, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
}
.theme-btn i{
margin-right:0px;
}
ul.bcf-meta-list li::after {
margin-left: 0px;
margin-right: 10px;
}
.comment-meta .single-comment .comment .reply{
left:0px;
right:auto;
}
.float-left {
float: right !important;
}
.logged-in-as {
margin-right: 15px;
}
.form-submit{
margin-right:15px;
}