bilingual-jekyll-resume-theme 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CODE_OF_CONDUCT.MD +92 -0
- data/_includes/analytics-body.html +28 -0
- data/_includes/analytics-head.html +41 -0
- data/_includes/ar-date.html +9 -0
- data/_includes/hreflang.html +45 -0
- data/_includes/main-head.html +2 -0
- data/_includes/print-social-links.html +76 -0
- data/_includes/resume-head-ar.html +14 -0
- data/_includes/resume-head-en.html +13 -0
- data/_includes/resume-section-ar.html +366 -0
- data/_includes/resume-section-en.html +366 -0
- data/_includes/shared-head.html +14 -0
- data/_includes/social-links.html +138 -0
- data/_includes/vendors/lineicons-v4.0/envelope.svg +8 -0
- data/_includes/vendors/lineicons-v4.0/phone.svg +13 -0
- data/_includes/vendors/lineicons-v4.0/postcard.svg +14 -0
- data/_includes/vendors/lineicons-v5.0/dev.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/dribbble-symbol.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/facebook.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/flickr.svg +4 -0
- data/_includes/vendors/lineicons-v5.0/github.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/globe-1.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/instagram.svg +4 -0
- data/_includes/vendors/lineicons-v5.0/linkedin.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/medium-alt.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/pinterest.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/telegram.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/whatsapp.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/x.svg +3 -0
- data/_includes/vendors/lineicons-v5.0/youtube.svg +3 -0
- data/_layouts/default.html +42 -1
- data/_layouts/resume-ar.html +167 -0
- data/_layouts/resume-en.html +167 -0
- data/_sass/_all-pages.scss +51 -0
- data/_sass/_base.scss +68 -0
- data/_sass/_layout.scss +78 -0
- data/_sass/_mixins.scss +111 -0
- data/_sass/_normalize.scss +379 -0
- data/_sass/_profile.scss +75 -0
- data/_sass/_resume-rtl.scss +69 -0
- data/_sass/_resume.scss +347 -0
- data/_sass/_variables.scss +33 -0
- data/assets/css/cv-ar.scss +19 -0
- data/assets/css/cv.scss +16 -0
- data/assets/css/main.scss +6 -0
- data/assets/favicon/resume/about.txt +6 -0
- data/assets/favicon/resume/android-chrome-192x192.png +0 -0
- data/assets/favicon/resume/android-chrome-512x512.png +0 -0
- data/assets/favicon/resume/apple-touch-icon.png +0 -0
- data/assets/favicon/resume/favicon-16x16.png +0 -0
- data/assets/favicon/resume/favicon-32x32.png +0 -0
- data/assets/favicon/resume/favicon.ico +0 -0
- data/assets/favicon/resume/site.webmanifest +1 -0
- metadata +122 -6
- data/_layouts/post.html +0 -5
- /data/_layouts/{page.html → profile.html} +0 -0
data/_sass/_mixins.scss
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
// Mixins
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
@mixin border-radius($radius) {
|
|
5
|
+
-webkit-border-radius: $radius;
|
|
6
|
+
-moz-border-radius: $radius;
|
|
7
|
+
border-radius: $radius;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@mixin transition($value) {
|
|
11
|
+
-webkit-transition: $value;
|
|
12
|
+
-moz-transition: $value;
|
|
13
|
+
transition: $value;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// Clearfix
|
|
17
|
+
//
|
|
18
|
+
// Clears floats via mixin (avoid using as a class).
|
|
19
|
+
|
|
20
|
+
@mixin clearfix {
|
|
21
|
+
&:before {
|
|
22
|
+
display: table;
|
|
23
|
+
content: "";
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:after {
|
|
27
|
+
display: table;
|
|
28
|
+
clear: both;
|
|
29
|
+
content: "";
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// media querie tools
|
|
34
|
+
|
|
35
|
+
@mixin media_max($screen_width) {
|
|
36
|
+
@media (max-width: $screen_width) {
|
|
37
|
+
@content;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@mixin media_min($screen_width) {
|
|
42
|
+
@media (min-width: $screen_width) {
|
|
43
|
+
@content;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@mixin media_larger_than_mobile {
|
|
48
|
+
@media (min-width: 600px) {
|
|
49
|
+
@content;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@mixin media_mobile {
|
|
54
|
+
@media (max-width: 600px) {
|
|
55
|
+
@content;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// type utilities
|
|
60
|
+
|
|
61
|
+
@mixin sans {
|
|
62
|
+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@mixin sans_light {
|
|
66
|
+
@include sans;
|
|
67
|
+
font-weight: 300;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@mixin sans_regular {
|
|
71
|
+
@include sans;
|
|
72
|
+
font-weight: 400;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@mixin sans_bold {
|
|
76
|
+
@include sans;
|
|
77
|
+
font-weight: 700;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@mixin sans_extrabold {
|
|
81
|
+
@include sans;
|
|
82
|
+
font-weight: 800;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@mixin serif {
|
|
86
|
+
font-family: "Lora", "Minion Pro", Palatino, Georgia, serif;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@mixin serif_regular {
|
|
90
|
+
@include serif;
|
|
91
|
+
font-weight: 400;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@mixin serif_bold {
|
|
95
|
+
@include serif;
|
|
96
|
+
font-weight: 700;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// layout
|
|
100
|
+
|
|
101
|
+
@mixin section_border {
|
|
102
|
+
border-top: 4px solid #c7c7c7;
|
|
103
|
+
border-bottom: 2px solid #c7c7c7;
|
|
104
|
+
padding: .2rem 0 .4rem;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@mixin section_border_thin {
|
|
108
|
+
border-top: 1px solid #c7c7c7;
|
|
109
|
+
border-bottom: 1px solid #c7c7c7;
|
|
110
|
+
padding: .2rem 0 .2rem;
|
|
111
|
+
}
|
|
@@ -0,0 +1,379 @@
|
|
|
1
|
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
|
+
|
|
3
|
+
/* Document
|
|
4
|
+
========================================================================== */
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 1. Correct the line height in all browsers.
|
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
html {
|
|
12
|
+
line-height: 1.15;
|
|
13
|
+
/* 1 */
|
|
14
|
+
-webkit-text-size-adjust: 100%;
|
|
15
|
+
/* 2 */
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* Sections
|
|
19
|
+
========================================================================== */
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Remove the margin in all browsers.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
body {
|
|
26
|
+
margin: 0;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Render the `main` element consistently in IE.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
main {
|
|
34
|
+
display: block;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
|
39
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
h1 {
|
|
43
|
+
font-size: 2em;
|
|
44
|
+
margin: 0.67em 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* Grouping content
|
|
48
|
+
========================================================================== */
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* 1. Add the correct box sizing in Firefox.
|
|
52
|
+
* 2. Show the overflow in Edge and IE.
|
|
53
|
+
*/
|
|
54
|
+
|
|
55
|
+
hr {
|
|
56
|
+
box-sizing: content-box;
|
|
57
|
+
/* 1 */
|
|
58
|
+
height: 0;
|
|
59
|
+
/* 1 */
|
|
60
|
+
overflow: visible;
|
|
61
|
+
/* 2 */
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
66
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
67
|
+
*/
|
|
68
|
+
|
|
69
|
+
pre {
|
|
70
|
+
font-family: monospace, monospace;
|
|
71
|
+
/* 1 */
|
|
72
|
+
font-size: 1em;
|
|
73
|
+
/* 2 */
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Text-level semantics
|
|
77
|
+
========================================================================== */
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Remove the gray background on active links in IE 10.
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
a {
|
|
84
|
+
background-color: transparent;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* 1. Remove the bottom border in Chrome 57-
|
|
89
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
abbr[title] {
|
|
93
|
+
border-bottom: none;
|
|
94
|
+
/* 1 */
|
|
95
|
+
text-decoration: underline;
|
|
96
|
+
/* 2 */
|
|
97
|
+
text-decoration: underline dotted;
|
|
98
|
+
/* 2 */
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
b,
|
|
106
|
+
strong {
|
|
107
|
+
font-weight: bolder;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
112
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
|
113
|
+
*/
|
|
114
|
+
|
|
115
|
+
code,
|
|
116
|
+
kbd,
|
|
117
|
+
samp {
|
|
118
|
+
font-family: monospace, monospace;
|
|
119
|
+
/* 1 */
|
|
120
|
+
font-size: 1em;
|
|
121
|
+
/* 2 */
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Add the correct font size in all browsers.
|
|
126
|
+
*/
|
|
127
|
+
|
|
128
|
+
small {
|
|
129
|
+
font-size: 80%;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
134
|
+
* all browsers.
|
|
135
|
+
*/
|
|
136
|
+
|
|
137
|
+
sub,
|
|
138
|
+
sup {
|
|
139
|
+
font-size: 75%;
|
|
140
|
+
line-height: 0;
|
|
141
|
+
position: relative;
|
|
142
|
+
vertical-align: baseline;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
sub {
|
|
146
|
+
bottom: -0.25em;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
sup {
|
|
150
|
+
top: -0.5em;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/* Embedded content
|
|
154
|
+
========================================================================== */
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Remove the border on images inside links in IE 10.
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
img {
|
|
161
|
+
border-style: none;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* Forms
|
|
165
|
+
========================================================================== */
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* 1. Change the font styles in all browsers.
|
|
169
|
+
* 2. Remove the margin in Firefox and Safari.
|
|
170
|
+
*/
|
|
171
|
+
|
|
172
|
+
button,
|
|
173
|
+
input,
|
|
174
|
+
optgroup,
|
|
175
|
+
select,
|
|
176
|
+
textarea {
|
|
177
|
+
font-family: inherit;
|
|
178
|
+
/* 1 */
|
|
179
|
+
font-size: 100%;
|
|
180
|
+
/* 1 */
|
|
181
|
+
line-height: 1.15;
|
|
182
|
+
/* 1 */
|
|
183
|
+
margin: 0;
|
|
184
|
+
/* 2 */
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Show the overflow in IE.
|
|
189
|
+
* 1. Show the overflow in Edge.
|
|
190
|
+
*/
|
|
191
|
+
|
|
192
|
+
button,
|
|
193
|
+
input {
|
|
194
|
+
/* 1 */
|
|
195
|
+
overflow: visible;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
200
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
|
201
|
+
*/
|
|
202
|
+
|
|
203
|
+
button,
|
|
204
|
+
select {
|
|
205
|
+
/* 1 */
|
|
206
|
+
text-transform: none;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Correct the inability to style clickable types in iOS and Safari.
|
|
211
|
+
*/
|
|
212
|
+
|
|
213
|
+
button,
|
|
214
|
+
[type="button"],
|
|
215
|
+
[type="reset"],
|
|
216
|
+
[type="submit"] {
|
|
217
|
+
-webkit-appearance: button;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Remove the inner border and padding in Firefox.
|
|
222
|
+
*/
|
|
223
|
+
|
|
224
|
+
button::-moz-focus-inner,
|
|
225
|
+
[type="button"]::-moz-focus-inner,
|
|
226
|
+
[type="reset"]::-moz-focus-inner,
|
|
227
|
+
[type="submit"]::-moz-focus-inner {
|
|
228
|
+
border-style: none;
|
|
229
|
+
padding: 0;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Restore the focus styles unset by the previous rule.
|
|
234
|
+
*/
|
|
235
|
+
|
|
236
|
+
button:-moz-focusring,
|
|
237
|
+
[type="button"]:-moz-focusring,
|
|
238
|
+
[type="reset"]:-moz-focusring,
|
|
239
|
+
[type="submit"]:-moz-focusring {
|
|
240
|
+
outline: 1px dotted ButtonText;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Correct the padding in Firefox.
|
|
245
|
+
*/
|
|
246
|
+
|
|
247
|
+
fieldset {
|
|
248
|
+
padding: 0.35em 0.75em 0.625em;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* 1. Correct the text wrapping in Edge and IE.
|
|
253
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
254
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
|
255
|
+
* `fieldset` elements in all browsers.
|
|
256
|
+
*/
|
|
257
|
+
|
|
258
|
+
legend {
|
|
259
|
+
box-sizing: border-box;
|
|
260
|
+
/* 1 */
|
|
261
|
+
color: inherit;
|
|
262
|
+
/* 2 */
|
|
263
|
+
display: table;
|
|
264
|
+
/* 1 */
|
|
265
|
+
max-width: 100%;
|
|
266
|
+
/* 1 */
|
|
267
|
+
padding: 0;
|
|
268
|
+
/* 3 */
|
|
269
|
+
white-space: normal;
|
|
270
|
+
/* 1 */
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
275
|
+
*/
|
|
276
|
+
|
|
277
|
+
progress {
|
|
278
|
+
vertical-align: baseline;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* Remove the default vertical scrollbar in IE 10+.
|
|
283
|
+
*/
|
|
284
|
+
|
|
285
|
+
textarea {
|
|
286
|
+
overflow: auto;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* 1. Add the correct box sizing in IE 10.
|
|
291
|
+
* 2. Remove the padding in IE 10.
|
|
292
|
+
*/
|
|
293
|
+
|
|
294
|
+
[type="checkbox"],
|
|
295
|
+
[type="radio"] {
|
|
296
|
+
box-sizing: border-box;
|
|
297
|
+
/* 1 */
|
|
298
|
+
padding: 0;
|
|
299
|
+
/* 2 */
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
304
|
+
*/
|
|
305
|
+
|
|
306
|
+
[type="number"]::-webkit-inner-spin-button,
|
|
307
|
+
[type="number"]::-webkit-outer-spin-button {
|
|
308
|
+
height: auto;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
|
313
|
+
* 2. Correct the outline style in Safari.
|
|
314
|
+
*/
|
|
315
|
+
|
|
316
|
+
[type="search"] {
|
|
317
|
+
-webkit-appearance: textfield;
|
|
318
|
+
/* 1 */
|
|
319
|
+
outline-offset: -2px;
|
|
320
|
+
/* 2 */
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* Remove the inner padding in Chrome and Safari on macOS.
|
|
325
|
+
*/
|
|
326
|
+
|
|
327
|
+
[type="search"]::-webkit-search-decoration {
|
|
328
|
+
-webkit-appearance: none;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
333
|
+
* 2. Change font properties to `inherit` in Safari.
|
|
334
|
+
*/
|
|
335
|
+
|
|
336
|
+
::-webkit-file-upload-button {
|
|
337
|
+
-webkit-appearance: button;
|
|
338
|
+
/* 1 */
|
|
339
|
+
font: inherit;
|
|
340
|
+
/* 2 */
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/* Interactive
|
|
344
|
+
========================================================================== */
|
|
345
|
+
|
|
346
|
+
/*
|
|
347
|
+
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
348
|
+
*/
|
|
349
|
+
|
|
350
|
+
details {
|
|
351
|
+
display: block;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/*
|
|
355
|
+
* Add the correct display in all browsers.
|
|
356
|
+
*/
|
|
357
|
+
|
|
358
|
+
summary {
|
|
359
|
+
display: list-item;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
/* Misc
|
|
363
|
+
========================================================================== */
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* Add the correct display in IE 10+.
|
|
367
|
+
*/
|
|
368
|
+
|
|
369
|
+
template {
|
|
370
|
+
display: none;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Add the correct display in IE 10.
|
|
375
|
+
*/
|
|
376
|
+
|
|
377
|
+
[hidden] {
|
|
378
|
+
display: none;
|
|
379
|
+
}
|
data/_sass/_profile.scss
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
body {
|
|
2
|
+
color: #333;
|
|
3
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
4
|
+
line-height: 1;
|
|
5
|
+
margin: 10% 0 8%;
|
|
6
|
+
text-align: center;
|
|
7
|
+
width: auto;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* Header */
|
|
11
|
+
|
|
12
|
+
.avatar {
|
|
13
|
+
border-radius: 100%;
|
|
14
|
+
width: 200px;
|
|
15
|
+
height: auto;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.full-name {
|
|
19
|
+
font-weight: 300;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.full-name b {
|
|
23
|
+
font-weight: bold;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.about {
|
|
27
|
+
color: #646464;
|
|
28
|
+
font-size: 87.5%;
|
|
29
|
+
padding-bottom: 14px;
|
|
30
|
+
line-height: .6cm;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* Main */
|
|
34
|
+
|
|
35
|
+
.social-links {
|
|
36
|
+
list-style-type: none;
|
|
37
|
+
padding: 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
a:hover {
|
|
41
|
+
color: #3064a9;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.social-links li {
|
|
45
|
+
display: inline;
|
|
46
|
+
padding: 0 15px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.social-links li a {
|
|
50
|
+
color: #BBB;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.social-links li a:hover {
|
|
54
|
+
color: #307EA9;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.cv-button {
|
|
58
|
+
border-radius: 3px;
|
|
59
|
+
background-color: #efefef;
|
|
60
|
+
text-decoration: none;
|
|
61
|
+
text-align: center;
|
|
62
|
+
display: block;
|
|
63
|
+
margin: 1.5rem auto;
|
|
64
|
+
width: 220px;
|
|
65
|
+
font-size: 1.375rem;
|
|
66
|
+
font-weight: 300;
|
|
67
|
+
color: #333;
|
|
68
|
+
line-height: 55px;
|
|
69
|
+
transition: (all .2s ease);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.cv-button:hover {
|
|
73
|
+
background-color: #333;
|
|
74
|
+
color: #fff;
|
|
75
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
// RTL and Arabic typography overrides for the resume layout
|
|
2
|
+
// ---------------------------------------/
|
|
3
|
+
|
|
4
|
+
@use "mixins";
|
|
5
|
+
|
|
6
|
+
html[dir="rtl"] {
|
|
7
|
+
body {
|
|
8
|
+
direction: rtl;
|
|
9
|
+
font-family: 'Cairo', 'Noto Naskh Arabic', Tahoma, Arial, sans-serif;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// Headings and common typographic elements
|
|
13
|
+
.section-header h2,
|
|
14
|
+
.page-header .header-name,
|
|
15
|
+
.page-header .header-title,
|
|
16
|
+
.content-section .resume-item-title,
|
|
17
|
+
.content-section .resume-item-details,
|
|
18
|
+
.content-section .resume-item-copy {
|
|
19
|
+
font-family: 'Cairo', 'Noto Naskh Arabic', Tahoma, Arial, sans-serif;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Global alignment defaults
|
|
23
|
+
.content-section,
|
|
24
|
+
.content-section .resume-item-title,
|
|
25
|
+
.content-section .resume-item-details,
|
|
26
|
+
.content-section .resume-item-copy {
|
|
27
|
+
text-align: right;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Header tweaks
|
|
31
|
+
.page-header {
|
|
32
|
+
.title-bar {
|
|
33
|
+
.header-title {
|
|
34
|
+
@include mixins.media_larger_than_mobile {
|
|
35
|
+
float: right;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// Social links on the opposite side in wide viewports
|
|
42
|
+
.social-links {
|
|
43
|
+
@include mixins.media_larger_than_mobile {
|
|
44
|
+
float: left;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.icon-link-item {
|
|
48
|
+
// flip spacing for RTL
|
|
49
|
+
margin-right: 5px;
|
|
50
|
+
margin-left: 0;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// Lists
|
|
55
|
+
.resume-item-list {
|
|
56
|
+
padding-right: 1.2rem;
|
|
57
|
+
padding-left: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Languages table tweaks
|
|
61
|
+
.languages-table {
|
|
62
|
+
direction: rtl;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// Footer alignment
|
|
66
|
+
.page-footer {
|
|
67
|
+
text-align: center; // keep centered
|
|
68
|
+
}
|
|
69
|
+
}
|