mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-24 18:52:55 +01:00
drop da base
This commit is contained in:
commit
93d3bf97bd
7
README.md
Normal file
7
README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# bigchain.io
|
||||||
|
|
||||||
|
> Landing page for www.bigchain.io
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
## Deployment
|
0
_src/_assets/javascripts/bigchain.js
Normal file
0
_src/_assets/javascripts/bigchain.js
Normal file
21
_src/_assets/styles/bigchain.scss
Normal file
21
_src/_assets/styles/bigchain.scss
Normal 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';
|
5
_src/_assets/styles/bigchain/_mixins.scss
Normal file
5
_src/_assets/styles/bigchain/_mixins.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
//
|
||||||
|
// Mixins
|
||||||
|
// ---
|
||||||
|
// bigchain.io
|
||||||
|
//
|
55
_src/_assets/styles/bigchain/_variables.scss
Normal file
55
_src/_assets/styles/bigchain/_variables.scss
Normal 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;
|
5
_src/_assets/styles/page-front.scss
Normal file
5
_src/_assets/styles/page-front.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
//
|
||||||
|
// Page: front
|
||||||
|
// ---
|
||||||
|
// bigchain.io
|
||||||
|
//
|
26
package.json
Normal file
26
package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user