Adds Introduction page

Simplified Introdction page

Spiced up home page more, style changes to code examples
This commit is contained in:
Adam Hollett
2016-03-15 19:36:27 -04:00
committed by Tetsuro
parent 4aacf3f9a1
commit 7fe3bfcb98
15 changed files with 127 additions and 91 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
.btn {
color: $color-white;
display: inline-block;
display: flex;
background: $color-blue-5;
align-items: center;
padding: $spacing-unit/4 $spacing-unit/2;
width: 200px;
border-radius: 4px;
border-radius: 8px;
text-decoration: none;
&:hover {
+5 -5
View File
@@ -13,12 +13,12 @@
content: "Example";
display: block;
padding: 8px 12px;
font-weight: bold;
color: $color-white;
background: $color-blue-5;
border-bottom: none;
color: $color-slate;
background: #fff;
border: 1px solid $color-blue-2;
border-radius: 3px 3px 0 0;
box-sizing: border-box;
font-size: 16px;
font-weight: bold;
}
// Label every second code block with "Output"
+1 -1
View File
@@ -1,4 +1,4 @@
.home--banner {
.home-banner {
text-align: center;
border-bottom: 1px solid lighten($color-slate, 50%);
padding-bottom: $spacing-unit;
+20
View File
@@ -0,0 +1,20 @@
.home-users-grid {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: $spacing-unit / 2;
}
.home-users-grid__item{
flex: 1;
margin-right: $spacing-unit / 2;
max-width: 50%;
&:last-child {
margin-right: 0;
}
}
.home-users-blurb {
text-align: right;
}