-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrtl.css
95 lines (71 loc) · 1.56 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
/*
Theme Name: Masonry
Adding support for language 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.
http://codex.wordpress.org/Right_to_Left_Language_Support
*/
body {
direction: rtl;
unicode-bidi: embed;
}
/* =05. Text-level semantics
-------------------------------------------------------------- */
blockquote:before{
float: right;
}
/* =09. Tables
-------------------------------------------------------------- */
td,
th {
text-align: right;
}
/* =13. Menus
-------------------------------------------------------------- */
.navigation-button {
text-align: right;
}
.footer-navigation ul {
text-align: right;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
float: right;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
float: left;
text-align: left;
}
/* =17. WordPress core styles
-------------------------------------------------------------- */
.alignright {
float: left;
margin: 0 18px 18px 0;
}
.alignleft {
float: right;
margin: 0 0 18px 18px;
}
.gallery-item {
float: right;
margin: 0 0 4px 4px;
}
.gallery-caption {
text-align: right;
}
/* =18. Widgets
-------------------------------------------------------------- */
.widget-area {
float: right;
}
/* =19. Content
-------------------------------------------------------------- */
.home .hentry {
float: right;
}
.content-area {
float: left;
}