## Logo

Logo Design:
* Golden Ratio
* height: 1
* width: 1.61803398875

## Coloring

### Main Color

* black: RGB 000000
* grey: RGB 808080
* light-grey: RGB C9C9C9
* white: RGB FFFFFF

### Main Accent

* blue: RGB 007AB1

### Additional Accent

* amber1: RGB ffb120
* amber2: RGB ffc500
* green: RGB 64b500

### Other Colors

none

## Typography

Font: Open Sans

### Headlines

* H1 Open Sans bold 48 - Letter Spacing: -3.6px - Colors: white, black, blue 
* H1 Open Sans light 48 - Letter Spacing: -3.6px - Colors: white, black, blue 
* H2 Open Sans regular 28 - Letter Spacing: -0.8px - Colors: white, black, blue 
* H3 Open Sans regular 24 - Letter Spacing: 0 - Colors: white, black, blue 
* H4 Open Sans bold 18 - Letter Spacing: 0 - Colors: white, black, blue 

### Paragraphs

  * p
  * a
  
* Font-Size: 16px
* Line-Height: 22px
* Letter Spacing: 0
* Margin-Bottom: 8px
* Colors: white, black, blue

## CDN

Idea:
* CD to a CDN so DEV can use only CDN Files?!
* NPM or BOWER?! depends on tech-stack and package manager...

* http://www.jsdelivr.com/ -> 
  * load any GitHub release: https://cdn.jsdelivr.net/gh/user/repo@version/file
  * add “.min” to any JS/CSS file to get a minified version - if one doesn't exists, we’ll generate it for you
  * https://cdn.jsdelivr.net/gh/alv-ch/job-desk@1.0.0-SNAPSHOT-201705021359/src/main/assets/styles/jobdesk.min.css
* https://www.maxcdn.com/open-source/
* https://www.keycdn.com/blog/web-font-performance/

## NPM

Publish a new npm package for an orgnization:
* npm init --scope=<org_scope>
* By default all scoped packages are published privately.
* To publish a scoped package publicly, pass the access flag with the value public
* npm publish --access public
* see: https://www.npmjs.com/docs/orgs/publishing-an-org-scoped-package.html

## Code Guidelines

* https://cssguidelin.es/
* http://codeguide.co/

* http://ianfeather.co.uk/a-maintainable-style-guide/
* https://gdstechnology.blog.gov.uk/2014/12/11/govuk-living-style-guide/
* https://standards.usa.gov/page-templates/#documentation-page

