Refactor website with new design & structure

This commit is contained in:
Andrew Miner
2016-04-03 19:30:15 -07:00
parent ec7e8c883d
commit d69585facd
406 changed files with 7411 additions and 37859 deletions
+60
View File
@@ -0,0 +1,60 @@
//
// Crafting Guide - item_page.scss
//
// Copyright © 2014-2016 by Redwood Labs
// All rights reserved.
//
.view__item_page {
@include layout-body-with-sidebar;
.about {
margin-bottom: $size-margin-large;
display: flex;
& > .left {
margin-right: $size-margin-large;
flex: 0 0 auto;
img {
height: $size-minecraft-block * 5;
width: $size-minecraft-block * 5;
}
}
& > .center {
flex: 1 1 100%;
display: flex;
flex-direction: column;
.title {
font-family: $font-family-header;
font-size: $font-size-xxlarge;
}
a.sourceMod {
font-family: $font-family-text;
font-size: $font-size-medium;
}
.button-row {
flex: 1 1 100%;
display: flex;
justify-content: center;
align-items: flex-end;
.button {
flex: 1 1 100%;
max-width: 66%;
}
}
}
& > .right {
flex: 0 0 auto;
}
}
}