Skip to content

Commit

Permalink
Rewritten roadmap to import its data from Github
Browse files Browse the repository at this point in the history
  • Loading branch information
pbakaus committed Jul 8, 2018
1 parent eb71ad6 commit a182dd0
Show file tree
Hide file tree
Showing 9 changed files with 1,250 additions and 60 deletions.
9 changes: 7 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true,
"es6": true
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
Expand Down Expand Up @@ -32,6 +36,7 @@
"brace-style": [
"error",
"1tbs"
]
],
"no-console": 0
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.sass-cache
.idea
.podcache.yaml
.vscode
node_modules

build
Expand Down
49 changes: 40 additions & 9 deletions assets/sass/pages/_roadmap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@
font-weight: 400;
}

.post-title {
margin: 0;
}

.note,
.roadmap-section-wrapper {
max-width: 1100px;
}

.note {
margin: 1em auto;
background: #fff;
padding: 0.5em;
box-shadow: 0px 1px 3px #0c569217;
font-size: 0.8em;
text-align: center;
box-sizing: border-box;
}

.workstream-title {
background: $gradient-bold;
padding: 1em 16px;
Expand All @@ -18,9 +37,15 @@
}

.roadmap-section-wrapper {
margin: 0 auto;
display: flex;
@include max-screen($tablet-portrait-breakpoint) {
display: block;
}
}



section {
background: #fff;
box-shadow: 0px 1px 6px rgba(0,0,0,0.1);
Expand All @@ -46,12 +71,23 @@
padding: 0.5em;
font-size: 0.8em;

a {
font-weight: inherit;
letter-spacing: 0;
line-height: 1.5;
text-transform: none;
}

h5 {
font-size: 1.3em;
font-size: 1em;
font-weight: 400;
}

p {
margin-top: 0;
font-size: 10pt;
line-height: 1.5;
color: #444;
}
}

Expand All @@ -64,13 +100,15 @@

li {
display: inline-block;
background: #f3f3f3;
background: #09bfff;
color: #fff;
padding: 0.2em 0.5em;
border-radius: 4px;
text-transform: uppercase;
font-weight: 400;
font-size: 0.7em;
text-align: left;
margin-bottom: 4px;
}
}

Expand All @@ -84,10 +122,3 @@

}



/* Them responsive awesomeness */

@include max-screen($mobile-breakpoint) {

}
Loading

0 comments on commit a182dd0

Please sign in to comment.