-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrtl.css
141 lines (104 loc) · 2.07 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
Theme Name: Grid Magazine
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;
}
*/
@media screen and (min-width: 37.5em) {
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: right;
text-align: right;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: left;
text-align: left;
}
}
.alignleft {
float: right;
margin-left: 1.5em;
margin-right: 0;
}
.alignright {
float: left;
margin-left: 0;
margin-right: 1.5em;
}
.avatar {
float: right;
margin: 0 0 1.5rem 1.5rem;
}
@media all and (min-width: 40em) {
.avatar {
margin-right: calc( -1 * (96px + 1.5rem) );
}
.comment-list ol {
margin-right: calc( 96px + 1.5rem );
}
}
.home.blog main > *,
.home.blog .sidebar > *,
.single .sidebar > *,
.page .sidebar > * {
float: right;
margin: 0 0 1.5em .75em;
}
@supports (display: grid) {
.home.blog main > *,
.home.blog .sidebar > *,
.single .sidebar > *,
.page .sidebar > * {
margin: 0;
}
}
@media screen and (min-width: 40em) {
.home.blog main > .post {
float: right;
}
@supports (display: grid) {
.home.blog main > .post {
float: none;
}
}
.single main .entry-content,
.single main .comments-area {
float: left;
}
.single main .entry-meta {
float: right;
}
@supports(display: grid){
.single main .entry-content,
.single main .entry-meta,
.single main .comments-area {
float: none;
}
}
.archive main,
.search main {
float: right;
}
.archive .sidebar,
.search .sidebar {
float: left;
}
@supports (display: grid) {
.archive main,
.archive .sidebar,
.search main,
.search .sidebar {
float: none;
}
}
}