-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtl.css
173 lines (165 loc) · 4.13 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
Theme Name: Strip
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
*/
/**
* 1.0 - Normalize
*/
body {
direction: rtl;
unicode-bidi: embed;
}
/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
caption,
th,
td {
text-align: right;
}
/*--------------------------------------------------------------
10.4 Comics
--------------------------------------------------------------*/
.comic .entry-title {
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
font-size: 24px;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.2;
color: #f3e7e7;
margin-bottom: 0.75em; /* 1em = 24px */
}
.archive .entry-comic {
margin-bottom: 2em;
}
.comic .categories-links a {
color: #422424;
}
.comic .post-edit-link {
padding: 9px 6px 6px 6px;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
font-size: 10px;
font-size: 0.625rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: black;
background-color: #ffff00;
text-align: left;
}
.comic .entry-meta {
float: right; /* aligns horizontally with categories-links */
text-align: right;
vertical-align: bottom;
height: 0;
}
.single-comic .entry-meta {
display: none;
}
.navigation-comic a {
text-decoration: none; /* accessibility: remove to highlight link on hover */
}
.navigation-comic {
display: box; /* Fallback for pre 2009 browsers syntax */
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
justify-content: space-between;
width: 100%;
}
.navigation-comic .nav-first,
.navigation-comic .nav-previous {
text-align: right;
width: 19.9%;
}
.navigation-comic .nav-last,
.navigation-comic .nav-next {
text-align: left;
width: 19.9%;
}
.navigation-comic .nav-title,
.navigation-comic .nav-title a {
text-align: center;
color: black;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
font-size: 12px;
font-size: 0.75rem;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.navigation-comic .nav-title a:hover,
.comic-episode, .comic-episode a:hover {
color: #ff7369;
}
.navigation-comic .nav-previous a,
.navigation-comic .nav-next a,
.navigation-comic .nav-first a,
.navigation-comic .nav-last a {
background: #faf4f4;
border-radius: 3px;
color: #c9a6ab;
display: inline-block;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
font-size: 12px;
font-size: 0.75rem;
letter-spacing: 0.12em;
text-align: center;
padding: 0.6em;
width: 96px;
text-transform: uppercase;
}
.navigation-comic .nav-previous a:hover,
.navigation-comic .nav-next a:hover,
.navigation-comic .nav-first a:hover,
.navigation-comic .nav-last a:hover {
background: #ff7369;
color: #fff;
}
.series-title, .series-title a, .series-title li,
.post-parent-title, .post-parent-title a {
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
color: black;
font-size: 12px;
font-size: 0.75rem;
line-height: 1.2;
letter-spacing: 0.12em;
text-transform: uppercase;
text-align: center;
margin-top: 12px;
}
.post-parent-title {
display: inline-block; /* rather than inline-block */
margin: 0 auto;
width: 100%;
}
/* the comic page title */
.page-title,
.taxonomy-description {
font: italic 400 24px/1 Futura, "Trebuchet MS", Arial, sans-serif;
margin-bottom: 0.6em;
text-align: center;
}
.taxonomy-description a {
font: 400 24px/1 Futura, "Trebuchet MS", Arial, sans-serif;
color: white;
text-transform: uppercase;
background-color: #EFE9EA;
padding: 4px;
}
/* comics blurb */
.comic-blurb,
.author-description {
margin: auto;
max-width: 696px;
background-color: #faf4f4;
font-family:'Fenix', Georgia, serif;
text-align: left;
padding: 1.2em;
font-size: 16px;
font-size: 1rem;
line-height: 1.2;
}