jekyll-theme-bootstrap-rtl 0.1.3 → 0.1.4
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/_sass/_fonts.scss +7 -5
- data/_sass/_variables.scss +35 -0
- data/_sass/jekyll-theme-bootstrap-rtl.scss +2 -22
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc537c0b996d1afa62e5b9020d96635acbb0bafa
|
|
4
|
+
data.tar.gz: ebb5c6bd72b07307fb81bfe2d9a11b358894e1d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a0517ba934fbbc6c0b4851cb946be694baec932b07323c998e8282d9978fc3e31dbe5f0ffbf2a3a760ad04568198e0e9752acf40b1631c23e389ddddb55da31
|
|
7
|
+
data.tar.gz: 1c471404404e0196ad4e2e0704f5769d43a121d6dc83775202b60de8fcc882bd121e7bcfa8bfb9ff31dca35899566b2b9982e1b0f05bec55b793ce278c812303
|
data/_sass/_fonts.scss
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/* Iranian Sans Web font as 'Iranian Sans' */
|
|
2
2
|
@font-face {
|
|
3
3
|
font-family: 'Iranian Sans';
|
|
4
|
-
src: url('/
|
|
5
|
-
src:
|
|
6
|
-
format('
|
|
4
|
+
//src: url( $assets-dir + '/fonts/iransans.eot'); /* for IE */
|
|
5
|
+
src: url( $assets-dir + '/fonts/iransans.ttf') format('truetype');
|
|
6
|
+
//src: local('Iranian Sans'), url('/assets/fonts/iransans.woff') format('woff'), url('/assets/fonts/iransans.svgz') format('svg'), url('/assets/fonts/iransans.svg') format('svg');
|
|
7
7
|
font-weight: normal;
|
|
8
8
|
font-style: normal;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'Iranian Sans';
|
|
13
|
-
src: local('Iranian Sans'), url('/
|
|
13
|
+
src: local('Iranian Sans'), url($assets-dir + '/fonts/iransansb.ttf') format('truetype');
|
|
14
14
|
font-weight: bold;
|
|
15
15
|
font-style: normal;
|
|
16
16
|
}
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
@font-face {
|
|
20
20
|
font-family: 'Titr';
|
|
21
|
-
src: local('Titr'), url('/
|
|
21
|
+
src: local('Titr'), url($assets-dir + '/fonts/BTitrBold.ttf') format('truetype');
|
|
22
22
|
font-weight: bold;
|
|
23
23
|
font-style: normal;
|
|
24
24
|
}
|
|
25
|
+
|
|
26
|
+
@import "font-awesome.min.css";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// Store asset directory to be used in imports
|
|
2
|
+
$assets-dir: '{{ "assets" | absolute_url }}';
|
|
3
|
+
|
|
4
|
+
// Bootstrap variables override
|
|
5
|
+
//////////////////////////////////////////////////////////////////////
|
|
6
|
+
|
|
7
|
+
$headings-font-family: 'Titr';
|
|
8
|
+
$headings-font-weight: bold;
|
|
9
|
+
$font-family-sans-serif: 'Iranian Sans',"Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
10
|
+
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
|
|
11
|
+
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
|
12
|
+
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
|
|
13
|
+
$font-family-base: $font-family-sans-serif !default;
|
|
14
|
+
|
|
15
|
+
$dir: 'rtl';
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
// Theme settings
|
|
19
|
+
//////////////////////////////////////////////////////////////////////
|
|
20
|
+
|
|
21
|
+
$color-main: #009688;
|
|
22
|
+
$color-main-darker: #004a43;
|
|
23
|
+
$color-main-dark: #00635a;
|
|
24
|
+
$color-main-light: #007d71;
|
|
25
|
+
$color-white: #fff;
|
|
26
|
+
$color-white-trans: rgba(255, 255, 255, 0.8);
|
|
27
|
+
$color-white-transer: rgba(255, 255, 255, 0.6);
|
|
28
|
+
$color-white-mild: #f5f5f5;
|
|
29
|
+
$color-grey: #666;
|
|
30
|
+
$color-grey-light: #8a8a8a;
|
|
31
|
+
$color-grey-dark: #444;
|
|
32
|
+
$color-shadow: rgba(0, 0, 0, 0.14);
|
|
33
|
+
$color-shadow2: rgba(0, 0, 0, 0.4);
|
|
34
|
+
$color-shadow3: rgba(0, 0, 0, 0.3);
|
|
35
|
+
$color-alt: #a332d6;
|
|
@@ -1,33 +1,13 @@
|
|
|
1
1
|
@charset "utf-8";
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
@import "bootstrap/stylesheets/bootstrap";
|
|
3
|
+
@import "variables";
|
|
5
4
|
@import "fonts";
|
|
5
|
+
@import "bootstrap/stylesheets/bootstrap";
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
/*==========================================================================
|
|
9
|
-
+ Variables
|
|
10
|
-
==========================================================================*/
|
|
11
|
-
|
|
12
8
|
// Theme settings
|
|
13
9
|
//////////////////////////////////////////////////////////////////////
|
|
14
10
|
|
|
15
|
-
$color-main: #009688;
|
|
16
|
-
$color-main-darker: #004a43;
|
|
17
|
-
$color-main-dark: #00635a;
|
|
18
|
-
$color-main-light: #007d71;
|
|
19
|
-
$color-white: #fff;
|
|
20
|
-
$color-white-trans: rgba(255, 255, 255, 0.8);
|
|
21
|
-
$color-white-transer: rgba(255, 255, 255, 0.6);
|
|
22
|
-
$color-white-mild: #f5f5f5;
|
|
23
|
-
$color-grey: #666;
|
|
24
|
-
$color-grey-light: #8a8a8a;
|
|
25
|
-
$color-grey-dark: #444;
|
|
26
|
-
$color-shadow: rgba(0, 0, 0, 0.14);
|
|
27
|
-
$color-shadow2: rgba(0, 0, 0, 0.4);
|
|
28
|
-
$color-shadow3: rgba(0, 0, 0, 0.3);
|
|
29
|
-
$color-alt: #a332d6;
|
|
30
|
-
|
|
31
11
|
// Theme
|
|
32
12
|
body {
|
|
33
13
|
font-family: 'Iranian Sans', 'Tahoma', sans-serif;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-bootstrap-rtl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arman Radmanesh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -162,6 +162,7 @@ files:
|
|
|
162
162
|
- _locales/fa.yml
|
|
163
163
|
- _sass/_fonts.scss
|
|
164
164
|
- _sass/_print.scss
|
|
165
|
+
- _sass/_variables.scss
|
|
165
166
|
- _sass/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.eot
|
|
166
167
|
- _sass/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.svg
|
|
167
168
|
- _sass/bootstrap/fonts/bootstrap/glyphicons-halflings-regular.ttf
|