aurora-theme 1.0.18.140.2 → 1.0.18.142
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/aurora.scss +33 -6
- data/_sass/variables.scss +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08b3dd4b9a798c7c4c8d1f8f0105cd7d27fb2851b36700b769770470bc80f8f1'
|
|
4
|
+
data.tar.gz: 9da832efcc56b7475928dd005ea17958de0b1719cd415c9b19abe79240853453
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2270b1d8d159a428eefda6906f6cbbe8d1bf77b93a779abc5491d0bb5ee07c16c78c5742c7edb2f291e6f43550d8b873c462772f6e96d86628ad1a02667f136a
|
|
7
|
+
data.tar.gz: 98661ef80588ce973afae125f1dd197fa940c5f882015ab48f745c136f9054a3bae13051382760ff9781a808362357903b08e9a99928897c92b59344fb8abe0a
|
data/_sass/aurora.scss
CHANGED
|
@@ -33,12 +33,31 @@ body {
|
|
|
33
33
|
line-height: 1.5;
|
|
34
34
|
color: $body-text-color;
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
36
|
+
@include large {
|
|
37
|
+
background-color: $header-bg-color;
|
|
38
|
+
background-image: url($bg-image-url), linear-gradient(120deg, $header-bg-color-secondary, $header-bg-color);
|
|
39
|
+
background-size: cover;
|
|
40
|
+
background-position: center;
|
|
41
|
+
background-repeat: no-repeat;
|
|
42
|
+
background-attachment: fixed;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@include medium {
|
|
46
|
+
background-color: $header-bg-color;
|
|
47
|
+
background-image: url($bg-image-url), linear-gradient(120deg, $header-bg-color-secondary, $header-bg-color);
|
|
48
|
+
background-size: cover;
|
|
49
|
+
background-position: center;
|
|
50
|
+
background-repeat: no-repeat;
|
|
51
|
+
background-attachment: fixed;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@include small {
|
|
55
|
+
background-image: linear-gradient(120deg, $header-bg-color-secondary, $header-bg-color);
|
|
56
|
+
background-size: cover;
|
|
57
|
+
background-position: center;
|
|
58
|
+
background-repeat: no-repeat;
|
|
59
|
+
background-attachment: fixed;
|
|
60
|
+
}
|
|
42
61
|
}
|
|
43
62
|
|
|
44
63
|
a {
|
|
@@ -123,6 +142,13 @@ a {
|
|
|
123
142
|
|
|
124
143
|
@include small {
|
|
125
144
|
padding: 2rem 1rem;
|
|
145
|
+
|
|
146
|
+
background-color: $header-bg-color;
|
|
147
|
+
background-image: url($bg-image-url), linear-gradient(120deg, $header-bg-color-secondary, $header-bg-color);
|
|
148
|
+
background-size: cover;
|
|
149
|
+
background-position: center;
|
|
150
|
+
background-repeat: no-repeat;
|
|
151
|
+
background-attachment: fixed;
|
|
126
152
|
}
|
|
127
153
|
}
|
|
128
154
|
|
|
@@ -185,6 +211,7 @@ a {
|
|
|
185
211
|
@include small {
|
|
186
212
|
padding: 2rem 1rem;
|
|
187
213
|
font-size: 1rem;
|
|
214
|
+
background-color: rgba(255, 255, 255, $body-background-opacity-secondary);
|
|
188
215
|
}
|
|
189
216
|
|
|
190
217
|
img {
|
data/_sass/variables.scss
CHANGED
|
@@ -4,8 +4,8 @@ $medium-breakpoint: 42em !default;
|
|
|
4
4
|
|
|
5
5
|
// Headers
|
|
6
6
|
$header-heading-color: #fff !default;
|
|
7
|
-
$header-bg-color: #
|
|
8
|
-
$header-bg-color-secondary: #
|
|
7
|
+
$header-bg-color: #FF2AAE !default;
|
|
8
|
+
$header-bg-color-secondary: #AE2AFF !default;
|
|
9
9
|
$bg-image-url: 'https://ibug.github.io/image/aurora.jpg' !default;
|
|
10
10
|
|
|
11
11
|
// Text
|
|
@@ -14,6 +14,7 @@ $body-text-color: #6c6071 !default;
|
|
|
14
14
|
$body-link-color: #6b1eb8 !default;
|
|
15
15
|
$blockquote-text-color: #918198 !default;
|
|
16
16
|
$body-background-opacity: 0.75 !default;
|
|
17
|
+
$body-background-opacity-secondary: 0.85 !default;
|
|
17
18
|
|
|
18
19
|
// Code
|
|
19
20
|
$code-bg-color: #f6f3fa !default;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aurora-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.18.
|
|
4
|
+
version: 1.0.18.142
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- iBug
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|