noodling
This commit is contained in:
9
site/assets/scss/components/_hero.scss
Normal file
9
site/assets/scss/components/_hero.scss
Normal file
@ -0,0 +1,9 @@
|
||||
.hero {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
padding: 0;
|
||||
height: 250px;
|
||||
}
|
@ -8,7 +8,10 @@ body {
|
||||
.h1,
|
||||
h1 {
|
||||
@include font-roboto;
|
||||
margin: $gutter 0 ($gutter / 2);
|
||||
margin: 0 0 ($gutter / 2);
|
||||
background-color: $light-grey;
|
||||
padding: 8px 0;
|
||||
width: 100%;
|
||||
font-size: 40px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
@ -14,3 +14,4 @@
|
||||
@import 'elements/layout';
|
||||
|
||||
@import 'components/styleguide';
|
||||
@import 'components/hero';
|
||||
|
@ -7,8 +7,7 @@
|
||||
{{> analytics }}
|
||||
|
||||
<header>
|
||||
{{> nav-main }}
|
||||
{{> nav-social }}
|
||||
{{> hero }}
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -17,6 +16,7 @@
|
||||
|
||||
<footer>
|
||||
{{> nav-foot }}
|
||||
{{> nav-social }}
|
||||
</footer>
|
||||
{{> javascripts }}
|
||||
</body>
|
||||
|
@ -1,15 +1,39 @@
|
||||
---
|
||||
hero: stock/lake.png
|
||||
---
|
||||
|
||||
<h1>I build web things.</h1>
|
||||
|
||||
<p>
|
||||
I’m a web developer exploring and learning everything I can about being a better
|
||||
developer. This place is where I share my findings, explorations, and other creative
|
||||
outlets.
|
||||
A full stack web developer with an affinity for clean code, workflow optimization, and
|
||||
ruby. I have experiences ranging from html prototyping through designing and executing
|
||||
API architectures.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
I have a high value for quality craftsmanship. I want to do great work, with people who
|
||||
also do great work. I love to explore and learn about my world. I enjoy being
|
||||
challenged. I take pleasure in providing creative solutions to specific needs, always
|
||||
keeping the bigger picture in mind. I was raised to work hard and play hard.
|
||||
keeping the bigger picture in mind.
|
||||
</p>
|
||||
|
||||
|
||||
<h2>Proficiency's</h2>
|
||||
|
||||
<p>
|
||||
Well versed in many web development tool chains, my strengths include Ruby, JavaScript,
|
||||
SCSS, SQL, and PHP.
|
||||
</p>
|
||||
|
||||
5/5 HTML Prototyping
|
||||
5/5 Ruby on Rails
|
||||
4/5 Linux Server Administration
|
||||
4/5 Front-End Dev Tool chains
|
||||
4/5 PHP Development
|
||||
4/5 Information Architecture
|
||||
3/5 UX Consulting
|
||||
5/5 CSS (and SCSS)
|
||||
4/5 JavaScript
|
||||
5/5 SQL
|
||||
5/5 Ruby
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
---
|
||||
title: site style guide
|
||||
hero: stock/star_nasa.jpg
|
||||
---
|
||||
|
||||
<h1>Looking at styling for an h1</h1>
|
||||
|
2
site/partials/hero.hbs
Normal file
2
site/partials/hero.hbs
Normal file
@ -0,0 +1,2 @@
|
||||
<div class="hero" style="background-image: url('{{assets}}/img/{{hero}}');">
|
||||
</div>
|
Reference in New Issue
Block a user