From 9ff683952dcc7e3bf0fa17293a8ed61d4e9df78e Mon Sep 17 00:00:00 2001 From: Revod Date: Fri, 26 Feb 2016 23:31:56 -0430 Subject: [PATCH] Remove bower and use npm --- CONTRIBUTING.md | 23 ---------------- bower.json | 33 ----------------------- source/styles/_fonts.scss | 1 + source/styles/_site-settings.scss | 44 +++++++++++++++++++++++++++++++ 4 files changed, 45 insertions(+), 56 deletions(-) delete mode 100644 CONTRIBUTING.md delete mode 100644 bower.json create mode 100644 source/styles/_fonts.scss diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index fb3b1ca..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,23 +0,0 @@ -# Contribution Guidelines - -The following is a set of guidelines for contributing to this project and its packages, which are most likely hosted on a private GitLab server of Kreativgebiet. - -### Making a commit - -- Use the present tense ("Add feature" not "Added feature") -- Use the imperative mood ("Move cursor to..." not "Moves cursor to...") -- Limit the first line to 72 characters or less -- Reference issues and pull requests liberally -- Consider starting the commit message with an applicable emoji: - - :art: `:art:` when improving the format/structure of the code - - :racehorse: `:racehorse:` when improving performance - - :memo: `:memo:` when doing something on the styleguide - - :bug: `:bug:` when fixing a bug - - :fire: `:fire:` when removing code or files - - :arrow_up: `:arrow_up:` when upgrading dependencies - - :arrow_down: `:arrow_down:` when downgrading dependencies - - :shirt: `:shirt:` when removing linter warnings - -#### When using CI -When only changing documentation, include [ci skip] in the commit description -:green_heart: `:green_heart:` when fixing the CI build diff --git a/bower.json b/bower.json deleted file mode 100644 index 4349c15..0000000 --- a/bower.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "Reven", - "version": "0.5.0", - "homepage": "https://github.com/revod/reven", - "authors": [ - "Ernesto Graterol " - ], - "description": "Boilerplate for a combination of ECMAScript 6, ED-Grid, Jade and Gulp.js", - "main": "gulpfile.babel.js", - "moduleType": [ - "es6", - "node" - ], - "keywords": [ - "boilerplate", - "preset", - "gulp", - "es6", - "gulpjs", - "edgrid" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "ed-grid": "*" - } -} diff --git a/source/styles/_fonts.scss b/source/styles/_fonts.scss new file mode 100644 index 0000000..de11cd0 --- /dev/null +++ b/source/styles/_fonts.scss @@ -0,0 +1 @@ +@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600,800); \ No newline at end of file diff --git a/source/styles/_site-settings.scss b/source/styles/_site-settings.scss index 2733f39..1aea3d3 100644 --- a/source/styles/_site-settings.scss +++ b/source/styles/_site-settings.scss @@ -3,4 +3,48 @@ // ===================== //Site Variales +// Font face. Incluya el import de Google Fonts o su regla font-face en el respectivo archivo _fonts.scss + @import 'fonts'; + +// Variables para aplicarlas en font-weight + $light : 300; + $normal : 400; + $semi-bold : 600; + $bold : 700; + $extra-bold : 800; + +// PALETA DE COLOR, modifique para su propia paleta de color + $negro : #070D12; + $blanco : #FDFDFD; + $gris : #ccc; + $gris-oscuro : #444; + $gris-claro : #f0f0f0; + +// ESTILOS BASE + $body--background : #fff; // fondo para el body + $body--font-family : 'Open Sans', sans-serif; // fuente predeterminada + $body--color : #333; // color de texto predeterminado + +// ESTILOS DE ENCABEZADOS + $header--font-family : 'Open Sans', sans-serif; // fuente para los headers (h1,h2,h3...) + $header--font-weight : $bold; // grosor de fuente para los headers + $header--text-transform : normal; // normal, uppercase, lowercase, capitalize + $header--color : #222; // color predeterminado de los header + +// TAMAÑO DE LOS ENCABEZADOS (h1...h6) + $h1--font-size : 2em; + $h2--font-size : 1.6em; + $h3--font-size : 1.3em; + $h4--font-size : 1em; + $h5--font-size : .9em; + $h6--font-size : .8em; + +// ESTIILOS DE ENLACES + $link--color : initial; // color para los enlaces + +// ESTILOS DE PÁRRAFOS + $p--font-size : 1em; // Tamaño de fuente + $p--line-height : 1.5; // Altura de línea + $p--margin : 1em; // Separación entre un párrafo y el siguiente + $p--font-weight : $normal; // Grosor predeterminado de la fuente