mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* Fixed start quest from items * More style fixes * Changed gem modal to 20 * Removed unused image * Added initial header styles for home page
150 lines
2.7 KiB
Vue
150 lines
2.7 KiB
Vue
<template lang='pug'>
|
|
div
|
|
static-header(:class='{"home-header": $route.name === "home"}')
|
|
|
|
.static-wrapper
|
|
router-view
|
|
|
|
#purple-footer
|
|
app-footer
|
|
|
|
#bottom-wrap.purple-4
|
|
#bottom-background
|
|
.seamless_mountains_demo_repeat
|
|
.midground_foreground_extended2
|
|
</template>
|
|
|
|
<style lang='scss'>
|
|
.home-header {
|
|
background: #6133b4 !important;
|
|
position: static;
|
|
box-shadow: none !important;
|
|
height: 100px !important;
|
|
padding-left: 5em !important;
|
|
padding-right: 5em !important;
|
|
|
|
.logo.svg-icon {
|
|
width: 200px !important;
|
|
}
|
|
|
|
.nav-item a {
|
|
font-size: 14px !important;
|
|
color: #d5c8ff !important;
|
|
padding-top: 2.8em !important;
|
|
}
|
|
|
|
.nav-item a:hover {
|
|
background: transparent !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
.login-button {
|
|
padding-right: 1em;
|
|
margin-top: 1.7em !important;
|
|
border-radius: 2px;
|
|
background-color: #b288ff;
|
|
box-shadow: 0 4px 4px 0 rgba(26, 24, 29, 0.16), 0 1px 8px 0 rgba(26, 24, 29, 0.12) !important;
|
|
}
|
|
|
|
.login-button:hover {
|
|
background-color: #b288ff;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang='scss'>
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
.purple-4 {
|
|
background-color: #271b3d;
|
|
}
|
|
|
|
#purple-footer {
|
|
background-color: #271b3d;
|
|
|
|
footer, footer a {
|
|
background: transparent;
|
|
color: #d5c8ff;
|
|
}
|
|
|
|
.logo {
|
|
color: #bda8ff;
|
|
}
|
|
|
|
.social-circle, .btn-donate {
|
|
background: #36205d;
|
|
color: #bda8ff;
|
|
|
|
.svg-icon {
|
|
color: #bda8ff;
|
|
}
|
|
}
|
|
}
|
|
|
|
#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: 500px;
|
|
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;
|
|
}
|
|
}
|
|
|
|
.static-wrapper {
|
|
.container-fluid {
|
|
margin: 5em 2em 2em 2em;
|
|
}
|
|
|
|
h1, h2 {
|
|
margin-top: 0.5em;
|
|
color: $purple-200;
|
|
}
|
|
|
|
h3, h4 {
|
|
color: $purple-200;
|
|
}
|
|
|
|
li, p {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.media img {
|
|
margin: 1em;
|
|
}
|
|
|
|
.strong {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import AppFooter from 'client/components/appFooter';
|
|
import StaticHeader from './header.vue';
|
|
|
|
export default {
|
|
components: {
|
|
AppFooter,
|
|
StaticHeader,
|
|
},
|
|
};
|
|
</script>
|