mirror of https://github.com/freeCodeCamp/devdocs
parent
e4bcfef354
commit
64aa261a54
@ -0,0 +1,94 @@
|
||||
//= depend_on icons.png
|
||||
//= depend_on icons@2x.png
|
||||
//= depend_on docs.png
|
||||
//= depend_on docs@2x.png
|
||||
|
||||
//= require vendor/open-sans
|
||||
|
||||
/*!
|
||||
* Copyright 2013-2016 Thibaut Courouble and other contributors
|
||||
*
|
||||
* This source code is licensed under the terms of the Mozilla
|
||||
* Public License, v. 2.0, a copy of which may be obtained at:
|
||||
* http://mozilla.org/MPL/2.0/
|
||||
*/
|
||||
|
||||
@import 'global/variables-sepia',
|
||||
'global/icons',
|
||||
'global/classes',
|
||||
'global/base';
|
||||
|
||||
@import 'components/app',
|
||||
'components/header',
|
||||
'components/notif',
|
||||
'components/sidebar',
|
||||
'components/content',
|
||||
'components/page',
|
||||
'components/fail',
|
||||
'components/path',
|
||||
'components/notice',
|
||||
'components/prism',
|
||||
'components/mobile';
|
||||
|
||||
@import 'pages/simple',
|
||||
'pages/angular',
|
||||
'pages/angularjs',
|
||||
'pages/apache',
|
||||
'pages/async',
|
||||
'pages/bootstrap',
|
||||
'pages/c',
|
||||
'pages/cakephp',
|
||||
'pages/clojure',
|
||||
'pages/coffeescript',
|
||||
'pages/cordova',
|
||||
'pages/crystal',
|
||||
'pages/d3',
|
||||
'pages/dojo',
|
||||
'pages/drupal',
|
||||
'pages/elixir',
|
||||
'pages/ember',
|
||||
'pages/erlang',
|
||||
'pages/express',
|
||||
'pages/git',
|
||||
'pages/github',
|
||||
'pages/go',
|
||||
'pages/haskell',
|
||||
'pages/jquery',
|
||||
'pages/knockout',
|
||||
'pages/kotlin',
|
||||
'pages/laravel',
|
||||
'pages/love',
|
||||
'pages/lua',
|
||||
'pages/mdn',
|
||||
'pages/meteor',
|
||||
'pages/modernizr',
|
||||
'pages/moment',
|
||||
'pages/nginx',
|
||||
'pages/node',
|
||||
'pages/npm',
|
||||
'pages/perl',
|
||||
'pages/phalcon',
|
||||
'pages/phaser',
|
||||
'pages/php',
|
||||
'pages/phpunit',
|
||||
'pages/postgres',
|
||||
'pages/ramda',
|
||||
'pages/rdoc',
|
||||
'pages/react',
|
||||
'pages/redis',
|
||||
'pages/requirejs',
|
||||
'pages/rethinkdb',
|
||||
'pages/rfc',
|
||||
'pages/rubydoc',
|
||||
'pages/rust',
|
||||
'pages/socketio',
|
||||
'pages/sphinx',
|
||||
'pages/sphinx_simple',
|
||||
'pages/support_tables',
|
||||
'pages/tcl_tk',
|
||||
'pages/tensorflow',
|
||||
'pages/underscore',
|
||||
'pages/vagrant',
|
||||
'pages/vue',
|
||||
'pages/yard',
|
||||
'pages/yii';
|
@ -0,0 +1,90 @@
|
||||
$baseFont: 'Open Sans', Helvetica, Arial, sans-serif;
|
||||
$monoFont: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
||||
|
||||
$style: 'sepia';
|
||||
|
||||
$maxWidth: 80rem;
|
||||
$headerHeight: 3rem;
|
||||
$sidebarWidth: 18rem;
|
||||
$sidebarMediumWidth: 16rem;
|
||||
$sidebarHiddenWidth: 9px;
|
||||
|
||||
$contentBackground: #EFE0B9;
|
||||
$documentBackground: #fafafa;
|
||||
|
||||
$textColor: #2A2C05;
|
||||
$textColorLight: #666;
|
||||
$textColorLighter: #888;
|
||||
|
||||
$inputFocusBorder: #35b5f4;
|
||||
|
||||
$focusBackground: #e5e5e5;
|
||||
$focusBorder: #d4d4d4;
|
||||
$focusText: #000;
|
||||
|
||||
$loadingText: #ccc;
|
||||
$splashText: #ccc;
|
||||
|
||||
$selectionBackground: #398df0;
|
||||
$selectionBorder: #196fc2;
|
||||
$selectionText: #fff;
|
||||
|
||||
$highlightBackground: #fffdcd;
|
||||
|
||||
$linkColor: #2A2C05;
|
||||
$linkColorHover: #E4B04A;
|
||||
$linkTextDecoration: underline;
|
||||
|
||||
$headerBackground: #E4B04A;
|
||||
$headerBorder: #d9d9d9;
|
||||
|
||||
$sidebarBackground: #E4B04A;
|
||||
$sidebarBorder: #e3e3e3;
|
||||
|
||||
$scrollbarColor: #d2d2d2;
|
||||
$scrollbarColorHover: #aaa;
|
||||
|
||||
$pathBackground: $sidebarBackground;
|
||||
$pathBorder: $sidebarBorder;
|
||||
|
||||
$noticeBackground: #faf9e2;
|
||||
$noticeBorder: #e2e2c1;
|
||||
|
||||
$boxBackground: #fafafa;
|
||||
$boxBorder: #d8d8d8;
|
||||
$boxBorderLight: #e5e5e5;
|
||||
$boxHeaderColor: $textColor;
|
||||
$boxHeaderBackground: #f5f5f5;
|
||||
|
||||
$noteBackground: #f8f8dd;
|
||||
$noteBorder: #d3d952;
|
||||
|
||||
$noteGreenBackground: #B7521E;
|
||||
$noteGreenBorder: #89da70;
|
||||
|
||||
$noteBlueBackground: #d4f3fd;
|
||||
$noteBlueBorder: #94bbeb;
|
||||
|
||||
$noteOrangeBackground: #fbe6d1;
|
||||
$noteOrangeBorder: #ec8b01;
|
||||
|
||||
$noteRedBackground: #fed5d3;
|
||||
$noteRedBorder: #dc7874;
|
||||
|
||||
$labelBackground: #f4f4f4;
|
||||
|
||||
$notifBackground: rgba(#333, .85);
|
||||
$notifBorder: none;
|
||||
$notifColor: #fff;
|
||||
$notifColorLight: #ccc;
|
||||
|
||||
$tipBackground: rgba(#fffdcd, .95);
|
||||
$tipBorder: 1px solid #e7dca9;
|
||||
|
||||
$mediumScreen: '(max-width: 800px)';
|
||||
|
||||
$contentZ: 1;
|
||||
$sidebarZ: 2;
|
||||
$headerZ: 3;
|
||||
$noticeZ: 4;
|
||||
$hoverZ: 5;
|
@ -1 +1 @@
|
||||
[]
|
||||
[{"name":"CSS","slug":"css","type":"mdn","mtime":1475424166,"db_size":7213186},{"name":"DOM","slug":"dom","type":"mdn","mtime":1475434383,"db_size":23492066},{"name":"DOM Events","slug":"dom_events","type":"mdn","mtime":1475425514,"db_size":1781128},{"name":"HTML","slug":"html","type":"mdn","mtime":1475421949,"db_size":2405298},{"name":"HTTP","slug":"http","type":"rfc","mtime":1475421783,"db_size":1478765},{"name":"JavaScript","slug":"javascript","type":"mdn","mtime":1475425795,"db_size":6014032}]
|
Loading…
Reference in new issue