forked from puikinsh/Travelify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtl.css
98 lines (97 loc) · 1.46 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
Theme Name: Travelify
Theme URI: http://colorlib.com/wp/travelify/
Description: Adding support for language written in a Right To Left (RTL) direction.
*/
a.readmore {
float: left;
}
#wp_page_numbers ul {
float: left;
}
#wp_page_numbers ul li a {
float: right;
}
ul.default-wp-page li.previous {
float: right;
}
ul.default-wp-page li.next {
float: left;
}
#footerarea .widget {
float: right;
}
.page-title {
float: right;
}
.entry-meta {
float: right;
}
.entry-meta a {
display: inline-block;
}
.entry-meta span {
display: inline-block;
padding-right: 0;
padding-left: 8px;
}
.entry-meta .author:before,
.entry-meta .posted-on:before,
.entry-meta .category:before,
.entry-meta .comments:before,
.tags:before,
.back-to-top a:before {
padding-right: 0;
padding-right: 3px;
}
.tags a {
display: inline-block;
}
#site-generator .copyright {
float: right;
}
.back-to-top {
left: inherit;
right: 18px;
}
.back-to-top a {
padding: 8px 8px 8px 6px;
}
.widget ul li {
background: none;
}
.widget ul {
list-style: disc;
padding-right: 20px;
}
.featured-text {
left: 30px;
right: inherit;
}
span.meta-nav {
display: none;
}
#main-nav li {
float: right;
}
.hgroup-right {
float: left;
}
#site-logo {
float: right;
}
#footerarea .col-3:last-child {
margin-left: 0;
}
#footerarea .col-3:first-child {
margin-left: 2.5%;
}
#footerarea .col-3 {
float: right;
}
@media only screen and (max-width: 767px) {
#footerarea .col-3 {
float: none;
width: 100%;
}
}