Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdevo <kdevo@users.noreply.github.com>2021-11-01 17:14:14 +0300
committerkdevo <kdevo@users.noreply.github.com>2021-11-01 17:18:41 +0300
commit597e6135f631578f8f7f014ebc8c15c73af21fb4 (patch)
treec1efd9c77cfe635e25b2c6e01585ab4a0f3c1782
parenta29ab3e94dd68b890617c83f4f602d1ae6cb36b1 (diff)
feat(themes): add new version of `origin` theme
The origin theme is a revival of the original Osprey theme - with the same colors, text alignment and fonts.
-rw-r--r--assets/sass/themes/origin/_colors.scss (renamed from assets/sass/themes/origin-colors.scss)2
-rw-r--r--assets/sass/themes/origin/_custom.scss19
-rw-r--r--assets/sass/themes/origin/_fontface.scss8
3 files changed, 28 insertions, 1 deletions
diff --git a/assets/sass/themes/origin-colors.scss b/assets/sass/themes/origin/_colors.scss
index 721f0de..febfe0b 100644
--- a/assets/sass/themes/origin-colors.scss
+++ b/assets/sass/themes/origin/_colors.scss
@@ -7,4 +7,4 @@ $secondary-bg-color: #F7F7F7;
$accent-color:#DA784D;
$alt-text-color: #757575;
-@import "color-map-light"; \ No newline at end of file
+@import "../color-map-light"; \ No newline at end of file
diff --git a/assets/sass/themes/origin/_custom.scss b/assets/sass/themes/origin/_custom.scss
new file mode 100644
index 0000000..8aa4271
--- /dev/null
+++ b/assets/sass/themes/origin/_custom.scss
@@ -0,0 +1,19 @@
+.about {
+ .center-xs:nth-child(2) {
+ text-align: left;
+ }
+}
+.blog {
+ .center-xs:nth-child(2) {
+ text-align: left;
+ }
+}
+
+.contact {
+ h1 {
+ text-align: left;
+ }
+ .icon {
+ display: none;
+ }
+} \ No newline at end of file
diff --git a/assets/sass/themes/origin/_fontface.scss b/assets/sass/themes/origin/_fontface.scss
new file mode 100644
index 0000000..1dfc9df
--- /dev/null
+++ b/assets/sass/themes/origin/_fontface.scss
@@ -0,0 +1,8 @@
+// Just as in the original Osprey theme, we load the fonts via URL:
+@import url("https://fonts.googleapis.com/css2?family=Bitter&family=Rubik");
+
+$font-header: "Bitter", "Roboto Slab", "Cambria", Georgia, serif;
+$font-body: "Rubik", "Poppins", "HelĀ­vetica", Arial, sans-serif;
+$font-code: "Menlo", "Monaco", "Andale Mono", "lucida console", "Courier New", monospace;
+$font-tagline: $font-body;
+$nav-font: $font-body; \ No newline at end of file