diff --git a/about.json b/about.json index c4c040b..e0e9ad4 100644 --- a/about.json +++ b/about.json @@ -6,6 +6,9 @@ "https://github.com/jordanvidrine/discourse-category-group-boxes.git", "https://github.com/discourse/discourse-clickable-topic.git" ], + "assets": { + "OrcasHub-Top-Logo": "assets/OrcasHub-Top-Logo.png" + }, "modifiers": { "serialize_topic_excerpts": true }, diff --git a/assets/OrcasHub-Top-Logo.png b/assets/OrcasHub-Top-Logo.png new file mode 100644 index 0000000..0e8a8e9 Binary files /dev/null and b/assets/OrcasHub-Top-Logo.png differ diff --git a/common/common.scss b/common/common.scss index 81d58b7..7952257 100644 --- a/common/common.scss +++ b/common/common.scss @@ -1,3 +1,16 @@ +// Header image above nav bar +.outer { + padding-top: 1.5rem; + padding-bottom: 1.5rem; + display: flex; + justify-content: center; + background-color: var(--header_background); +} + +.top-header-image { + background-image: url($OrcasHub-Top-Logo); +} + // custom search banner customizations .custom-search-banner-wrap { margin: 0 auto !important; diff --git a/common/header.html b/common/header.html new file mode 100644 index 0000000..ac7d971 --- /dev/null +++ b/common/header.html @@ -0,0 +1,5 @@ +
+ +
+
+
\ No newline at end of file diff --git a/desktop/desktop.scss b/desktop/desktop.scss index c028435..e6ceb1d 100644 --- a/desktop/desktop.scss +++ b/desktop/desktop.scss @@ -1,3 +1,8 @@ @import "showcased-categories"; @import "chat-desktop"; @import "sidebar-desktop"; + +.top-header-image { + height: 128px; + width: 246px; +} diff --git a/mobile/mobile.scss b/mobile/mobile.scss index d0c0bce..e7a32a0 100644 --- a/mobile/mobile.scss +++ b/mobile/mobile.scss @@ -1,5 +1,11 @@ @import "chat-mobile"; +.top-header-image { + height: 80px; + width: 154px; + background-size: 154px 80px; +} + .custom-search-banner-wrap { h1 { font-size: 2.5em !important;