Sept 20 fixes (#9054)

* Fixed start quest from items

* More style fixes

* Changed gem modal to 20

* Removed unused image

* Added initial header styles for home page
This commit is contained in:
Keith Holliday
2017-09-20 09:56:26 -05:00
committed by GitHub
parent c0f159a8a5
commit 7812e14898
6 changed files with 56 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
<template lang='pug'>
div
static-header
static-header(:class='{"home-header": $route.name === "home"}')
.static-wrapper
router-view
@@ -14,6 +14,44 @@
.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';