Commit cd23c390 authored by Seth Vargo's avatar Seth Vargo

Move assets to assets/

parent 2aa5a198
...@@ -15,7 +15,7 @@ header .header { ...@@ -15,7 +15,7 @@ header .header {
.hero { .hero {
height: $hero-height; height: $hero-height;
background: #000000 url(/images/hero_image.jpg) no-repeat 35px -40px; background: #000000 image-url('hero_image.jpg') no-repeat 35px -40px;
background-size: 960px 467px; background-size: 960px 467px;
h2 { h2 {
...@@ -30,7 +30,7 @@ header .header { ...@@ -30,7 +30,7 @@ header .header {
} }
.download-container { .download-container {
background: url(/images/down_arrow.png) no-repeat top left; background: image-url('down_arrow.png') no-repeat top left;
display: inline-block; display: inline-block;
min-height: 73px; min-height: 73px;
margin: 0 auto; margin: 0 auto;
...@@ -294,7 +294,7 @@ header .header { ...@@ -294,7 +294,7 @@ header .header {
width: $nav-height; width: $nav-height;
border-right: $border; border-right: $border;
float: left; float: left;
background: $white url(/images/arrow-left.png) no-repeat center center; background: $white image-url('arrow-left.png') no-repeat center center;
@include respond-to(mobile) { @include respond-to(mobile) {
width: 50%; width: 50%;
background-position: left center; background-position: left center;
...@@ -302,7 +302,7 @@ header .header { ...@@ -302,7 +302,7 @@ header .header {
} }
.next-section { .next-section {
background: $white url(/images/arrow-right.png) no-repeat center right; background: $white image-url('arrow-right.png') no-repeat center right;
} }
} }
......
...@@ -29,7 +29,7 @@ margin-left: -20px; ...@@ -29,7 +29,7 @@ margin-left: -20px;
} }
.hashi-logo { .hashi-logo {
background: url(/images/logo_footer.png) no-repeat center top; background: image-url('logo_footer.png') no-repeat center top;
height: 40px; height: 40px;
width: 40px; width: 40px;
background-size: 37px 40px; background-size: 37px 40px;
......
...@@ -58,9 +58,9 @@ $mono: 'Inconsolata', 'courier new', courier, mono-space; ...@@ -58,9 +58,9 @@ $mono: 'Inconsolata', 'courier new', courier, mono-space;
@font-face { @font-face {
font-family: 'HeimatStencil-SemiBold'; font-family: 'HeimatStencil-SemiBold';
src: url('../../fonts/2772B2_0_0.eot'); src: font-url('2772B2_0_0.eot');
src: url('../../fonts/2772B2_0_0.woff') format('woff'), src: font-url('2772B2_0_0.woff') format('woff'),
url('../../fonts/2772B2_0_0.ttf') format('truetype'); font-url('2772B2_0_0.ttf') format('truetype');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
...@@ -89,7 +89,7 @@ background-color: $white; ...@@ -89,7 +89,7 @@ background-color: $white;
//elements //elements
.divider { .divider {
background: url(/images/divider.png) no-repeat center bottom; background: image-url('divider.png') no-repeat center bottom;
height: 70px; height: 70px;
width: 70px; width: 70px;
background-size: 70px 70px; background-size: 70px 70px;
......
...@@ -22,7 +22,7 @@ nav { ...@@ -22,7 +22,7 @@ nav {
} }
.packer-logo { .packer-logo {
background: url(/images/logo_nav.png) no-repeat center top; background: image-url('logo_nav.png') no-repeat center top;
height: 80px; height: 80px;
width: 80px; width: 80px;
background-size: 34px 50px; background-size: 34px 50px;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment