Continue projects, skills hidden by default

This commit is contained in:
Chuck Dries 2017-03-20 02:14:29 -07:00
parent 0bde78da0c
commit 4dd59e8a7e
4 changed files with 10 additions and 22 deletions

1
.vscode/tasks.json vendored
View File

@ -3,6 +3,7 @@
// for the documentation about the tasks.json format // for the documentation about the tasks.json format
"version": "0.1.0", "version": "0.1.0",
"command": "gulp", "command": "gulp",
"isShellCommand": true,
"tasks": [{ "tasks": [{
"taskName": "default", "taskName": "default",
"isBuildCommand": true, "isBuildCommand": true,

View File

@ -82,15 +82,16 @@ body {
width: 390px; width: 390px;
border: 1px solid #aaa; border: 1px solid #aaa;
border-radius: 5px; border-radius: 5px;
padding: 0px; padding: 0 0 1em 0;
display: inline-block; display: inline-block;
margin: 3px; margin: 3px;
overflow: hidden; } overflow: hidden; }
.slide div .project .cover { .slide div .project .cover {
height: 300px; height: 15em;
background-position: center center; background-position: center center;
background-size: cover; background-size: cover;
margin: 0px; } margin: 0px;
padding: 1em; }
.slide div .project h2 { .slide div .project h2 {
margin: .5em 0 0 1em; margin: .5em 0 0 1em;
padding: 0; } padding: 0; }
@ -120,7 +121,6 @@ body {
margin-top: 1.7em; } margin-top: 1.7em; }
h2 { h2 {
font-weight: normal;
font-style: italic; } font-style: italic; }
a { a {

View File

@ -122,25 +122,11 @@
<div> <div>
<div class="project"> <div class="project">
<div class="cover" id="sierra"> <div class="cover" id="sierra">
<span class="award">Hackathon winner</span>
</div> </div>
<h2>Project Name</h2> <h2>Project Name</h2>
<p>Project description</p> <p>Project description</p>
</div> </div>
<div class="project">
<div class="cover" id="sierra">
</div>
<p>Project description</p>
</div>
<div class="project">
<div class="cover" id="sierra">
</div>
<p>Project description</p>
</div>
<div class="project">
<div class="cover" id="sierra">
</div>
<p>Project description</p>
</div>
</div> </div>
<br> <br>
<br> <br>

View File

@ -116,15 +116,16 @@ body {
width: $width/2 - 10; width: $width/2 - 10;
border: 1px solid #aaa; border: 1px solid #aaa;
border-radius: 5px; border-radius: 5px;
padding: 0px; padding: 0 0 1em 0;
display: inline-block; display: inline-block;
margin: 3px; margin: 3px;
overflow: hidden; overflow: hidden;
.cover { .cover {
height: 300px; height: 15em;
background-position: center center; background-position: center center;
background-size: cover; background-size: cover;
margin: 0px; margin: 0px;
padding: 1em;
} }
h2 { h2 {
margin: .5em 0 0 1em; margin: .5em 0 0 1em;
@ -165,7 +166,7 @@ body {
} }
h2 { h2 {
font-weight: normal; // font-weight: normal;
font-style: italic; font-style: italic;
} }