Compare commits
3 Commits
4384494554
...
d39e74ca58
Author | SHA1 | Date | |
---|---|---|---|
d39e74ca58 | |||
e347ce42e4 | |||
47b081d2a9 |
@ -6,6 +6,9 @@
|
|||||||
"https://github.com/jordanvidrine/discourse-category-group-boxes.git",
|
"https://github.com/jordanvidrine/discourse-category-group-boxes.git",
|
||||||
"https://github.com/discourse/discourse-clickable-topic.git"
|
"https://github.com/discourse/discourse-clickable-topic.git"
|
||||||
],
|
],
|
||||||
|
"assets": {
|
||||||
|
"OrcasHub-Top-Logo": "assets/OrcasHub-Top-Logo.png"
|
||||||
|
},
|
||||||
"modifiers": {
|
"modifiers": {
|
||||||
"serialize_topic_excerpts": true
|
"serialize_topic_excerpts": true
|
||||||
},
|
},
|
||||||
|
BIN
assets/OrcasHub-Top-Logo.png
Normal file
BIN
assets/OrcasHub-Top-Logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
@ -1,3 +1,21 @@
|
|||||||
|
// 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);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Hide the default logo in the header bar
|
||||||
|
.home-logo-wrapper-outlet {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
// custom search banner customizations
|
// custom search banner customizations
|
||||||
.custom-search-banner-wrap {
|
.custom-search-banner-wrap {
|
||||||
margin: 0 auto !important;
|
margin: 0 auto !important;
|
||||||
@ -286,6 +304,16 @@ html body #main-outlet {
|
|||||||
border-radius: 0.5em;
|
border-radius: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Category List
|
||||||
|
|
||||||
|
.custom-category-boxes-container {
|
||||||
|
.custom-category-boxes {
|
||||||
|
.category-box {
|
||||||
|
border-radius: .5rem !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Topic List
|
// Topic List
|
||||||
|
|
||||||
@keyframes background-fade-highlight {
|
@keyframes background-fade-highlight {
|
||||||
|
5
common/header.html
Normal file
5
common/header.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<div class="outer">
|
||||||
|
<a href="https://orcas.community/">
|
||||||
|
<div class="top-header-image"></div>
|
||||||
|
</a>
|
||||||
|
</div>
|
@ -1,3 +1,8 @@
|
|||||||
@import "showcased-categories";
|
@import "showcased-categories";
|
||||||
@import "chat-desktop";
|
@import "chat-desktop";
|
||||||
@import "sidebar-desktop";
|
@import "sidebar-desktop";
|
||||||
|
|
||||||
|
.top-header-image {
|
||||||
|
height: 128px;
|
||||||
|
width: 246px;
|
||||||
|
}
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
@import "chat-mobile";
|
@import "chat-mobile";
|
||||||
|
|
||||||
|
.top-header-image {
|
||||||
|
height: 80px;
|
||||||
|
width: 154px;
|
||||||
|
background-size: 154px 80px;
|
||||||
|
}
|
||||||
|
|
||||||
.custom-search-banner-wrap {
|
.custom-search-banner-wrap {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2.5em !important;
|
font-size: 2.5em !important;
|
||||||
|
Loading…
Reference in New Issue
Block a user