drop da base

This commit is contained in:
Matthias Kretschmann 2015-12-19 20:56:04 +01:00
commit 93d3bf97bd
7 changed files with 119 additions and 0 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# bigchain.io
> Landing page for www.bigchain.io
## Development
## Deployment

View File

View File

@ -0,0 +1,21 @@
//
// Collection File
// ---
// bigchain.io
//
// Normalize all the things
@import '../../../node_modules/normalize-css/normalize.css';
@import '../../../node_modules/normalize-opentype.css/normalize-opentype.scss';
// Variables & Mixins
@import 'bigchain/_variables';
@import 'bigchain/_mixins';
// Components
// Content types
@import 'bigchain/content-page';
// specific page styles
@import 'page-front';

View File

@ -0,0 +1,5 @@
//
// Mixins
// ---
// bigchain.io
//

View File

@ -0,0 +1,55 @@
//
// Variables
// ---
// bigchain.io
//
//
// Colors
//
$brand-main-blue: #003C69;
$brand-main-black: #000000;
$brand-main-white: #FFFFFF;
//
// Typography
//
$font-family-fira: 'fira-sans-light', sans-serif !default;
$font-family-avenir: 'Avenir', 'Helvetica Neue', 'Arial', sans-serif !default;
$font-weight-light: 300 !default;
$font-weight-normal: 400 !default;
$font-weight-bold: 600 !default;
$font-weight-base: $font-weight-light !default;
$font-family-base: $font-family-avenir !default;
$font-size-base: 16px !default;
$font-size-large: ceil(($font-size-base * 1.15)) !default;
$font-size-small: ceil(($font-size-base * 0.85)) !default;
$font-size-mini: ceil(($font-size-base * 0.65)) !default;
$font-size-h1: floor(($font-size-base * 2.6)) !default;
$font-size-h2: floor(($font-size-base * 2.25)) !default;
$font-size-h3: ceil(($font-size-base * 1.7)) !default;
$font-size-h4: ceil(($font-size-base * 1.25)) !default;
$font-size-h5: $font-size-base !default;
$font-size-h6: ceil(($font-size-base * 0.85)) !default;
$line-height-base: 1.4 !default;
$line-height-computed: floor(($font-size-base * $line-height-base)) !default;
$headings-font-family: $font-family-fira !default;
$headings-font-weight: $font-weight-normal !default;
$headings-line-height: 1.2 !default;
$headings-color: $brand-main-blue !default;
//
// Scaffolding
//
$body-bg: #fff !default;
$text-color: $brand-main-black !default;
$link-color: $brand-main-blue !default;
$link-hover-color: darken($link-color, 15%) !default;

View File

@ -0,0 +1,5 @@
//
// Page: front
// ---
// bigchain.io
//

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "bigchain-website",
"version": "0.0.0",
"author": {
"name": "Matthias Kretschmann",
"email": "m@kretschmann.io"
},
"description": "Landing page for www.bigchain.io",
"homepage": "http://www.bigchain.io",
"license": "(c) 2015 ascribe - All Rights Reserved",
"main": "gulpfile.js",
"dependencies": {
"normalize-opentype.css": "^0.2.4",
},
"devDependencies": {
},
"engines": {
"node": ">=0.10.29"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ascribe/bigchain-website"
}
}