mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-13 04:37:36 +01:00
276 lines
5.2 KiB
Vue
276 lines
5.2 KiB
Vue
<template>
|
|
<div>
|
|
<chat-banner />
|
|
<static-header
|
|
v-if="showContentWrap"
|
|
:class="{
|
|
'home-header': ['home', 'front'].indexOf($route.name) !== -1,
|
|
'white-header': $route.name === 'plans'
|
|
}"
|
|
/>
|
|
<div
|
|
class="static-wrapper"
|
|
:class="{ 'groups-bg': $route.name === 'groupPlans' }"
|
|
>
|
|
<router-view />
|
|
</div>
|
|
<div
|
|
v-if="showContentWrap"
|
|
:id="footerId"
|
|
>
|
|
<app-footer />
|
|
</div>
|
|
<div
|
|
v-if="showContentWrap && footerId"
|
|
id="bottom-wrap"
|
|
class="purple-4"
|
|
>
|
|
<div id="bottom-background">
|
|
<div class="seamless_mountains_demo_repeat"></div>
|
|
<div class="midground_foreground_extended2"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import '~@/assets/scss/colors.scss';
|
|
|
|
.home-header {
|
|
background: $purple-300 !important;
|
|
position: static;
|
|
box-shadow: none !important;
|
|
height: 100px !important;
|
|
padding-left: 5em !important;
|
|
padding-right: 5em !important;
|
|
|
|
.logo.svg-icon {
|
|
width: 175px !important;
|
|
}
|
|
|
|
.nav-item a {
|
|
font-size: 14px !important;
|
|
color: $purple-600 !important;
|
|
padding-top: 16px !important;
|
|
}
|
|
|
|
.nav-item a:hover {
|
|
background: transparent !important;
|
|
color: $white !important;
|
|
}
|
|
|
|
.nav-item .nav-link {
|
|
transition: color .5s ease;
|
|
}
|
|
|
|
.login-button {
|
|
padding-right: 1em;
|
|
border-radius: 4px;
|
|
background-color: #9a62ff;
|
|
}
|
|
|
|
.login-button:hover {
|
|
background-color: #5d3b9c;
|
|
box-shadow: 0 4px 4px 0 rgba(26, 24, 29, 0.16), 0 1px 8px 0 rgba(26, 24, 29, 0.12) !important;
|
|
}
|
|
}
|
|
|
|
.white-header {
|
|
background: $white !important;
|
|
background-color: $white !important;
|
|
|
|
a {
|
|
color: $header-dark-background !important;
|
|
}
|
|
|
|
a:hover {
|
|
color: $white !important;
|
|
}
|
|
}
|
|
|
|
#purple-footer {
|
|
background-color: $header-dark-background;
|
|
|
|
.row {
|
|
margin: 0;
|
|
}
|
|
|
|
footer, footer a {
|
|
background: transparent;
|
|
color: $purple-500;
|
|
&:hover {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
color: $purple-400;
|
|
}
|
|
|
|
hr {
|
|
border-top-color: $purple-100;
|
|
}
|
|
|
|
.donate-text {
|
|
color: $purple-500;
|
|
}
|
|
|
|
.logo {
|
|
color: $purple-300;
|
|
}
|
|
|
|
.colophon {
|
|
color: $purple-500;
|
|
}
|
|
|
|
.social-circle {
|
|
background: $purple-50;
|
|
color: $purple-500;
|
|
|
|
.instagram svg {
|
|
background-color: $purple-50;
|
|
fill: $purple-500;
|
|
&:hover {
|
|
fill: $white;
|
|
}
|
|
}
|
|
|
|
.bluesky svg {
|
|
background-color: $purple-50;
|
|
fill: $purple-500;
|
|
&:hover {
|
|
fill: $white;
|
|
}
|
|
}
|
|
|
|
.facebook svg {
|
|
background-color: $purple-50;
|
|
fill: $purple-500;
|
|
&:hover {
|
|
fill: $white;
|
|
}
|
|
}
|
|
|
|
.tumblr svg {
|
|
background-color: $purple-50;
|
|
fill: $purple-500;
|
|
&:hover {
|
|
fill: $white;
|
|
}
|
|
}
|
|
}
|
|
.btn-contribute {
|
|
background: $white;
|
|
box-shadow: none;
|
|
border-radius: 2px;
|
|
width: 175px;
|
|
height: 32px;
|
|
color: $gray-50;
|
|
text-align: center;
|
|
line-height: 1.71;
|
|
font-weight: bold;
|
|
font-size: 0.875rem;
|
|
vertical-align: middle;
|
|
padding: 0;
|
|
margin: 32px 0 32px 24px;
|
|
box-shadow: 0 1px 3px 0 rgba(26, 24, 29, 0.12), 0 1px 2px 0 rgba(26, 24, 29, 0.24);
|
|
|
|
a {
|
|
display: flex;
|
|
}
|
|
|
|
.text{
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
}
|
|
}
|
|
|
|
.static-wrapper {
|
|
.container-fluid {
|
|
margin: 5em 2em 2em 2em;
|
|
width: auto;
|
|
}
|
|
|
|
h1, h2 {
|
|
margin-top: 0.5em;
|
|
color: $purple-200;
|
|
}
|
|
|
|
h3, h4 {
|
|
color: $purple-200;
|
|
}
|
|
|
|
.media img {
|
|
margin: 1em;
|
|
}
|
|
|
|
.strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&.groups-bg {
|
|
background-color: $white;
|
|
background-image: url('../../assets/images/group-plans-static/top.svg');
|
|
background-repeat: no-repeat;
|
|
background-position-y: 56px;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss" scoped>
|
|
#bottom-wrap.purple-4 {
|
|
background-color: #271B3D;
|
|
}
|
|
|
|
#bottom-wrap {
|
|
padding-top: 10em;
|
|
}
|
|
|
|
#bottom-background {
|
|
position: relative;
|
|
|
|
.seamless_mountains_demo_repeat {
|
|
background-image: url('~@/assets/images/auth/seamless_mountains_demo.png');
|
|
background-repeat: repeat-x;
|
|
width: 100%;
|
|
height: 300px;
|
|
position: absolute;
|
|
z-index: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.midground_foreground_extended2 {
|
|
background-image: url('~@/assets/images/auth/midground_foreground_extended2.png');
|
|
position: relative;
|
|
width: 1500px;
|
|
max-width: 100%;
|
|
height: 150px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import AppFooter from '@/components/appFooter';
|
|
import ChatBanner from '@/components/header/banners/chatBanner';
|
|
import StaticHeader from './header.vue';
|
|
|
|
export default {
|
|
components: {
|
|
AppFooter,
|
|
ChatBanner,
|
|
StaticHeader,
|
|
},
|
|
computed: {
|
|
showContentWrap () {
|
|
return this.$route.name !== 'news';
|
|
},
|
|
footerId () {
|
|
if (this.$route.name === 'plans') return null;
|
|
return 'purple-footer';
|
|
},
|
|
},
|
|
};
|
|
</script>
|