diff options
| author | Mark Otto <[email protected]> | 2015-08-22 18:51:06 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-08-22 18:51:06 -0700 |
| commit | 37c84f144b37040d7af56555ac76a4f678f37812 (patch) | |
| tree | 8a54047627560ec5f51f6747db83bb0c81ecd8be /docs | |
| parent | a93c42bbbeed129f840d6cbc7aff9972f90217d4 (diff) | |
| download | bootstrap-37c84f144b37040d7af56555ac76a4f678f37812.tar.xz bootstrap-37c84f144b37040d7af56555ac76a4f678f37812.zip | |
nuke that page since it's now unused
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/layout/scaffolding.md | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/docs/layout/scaffolding.md b/docs/layout/scaffolding.md deleted file mode 100644 index ea5537ef4..000000000 --- a/docs/layout/scaffolding.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -layout: docs -title: Scaffolding -group: layout ---- - -The scaffolding of Bootstrap refers to our general approach to building the project. It outlines the basic document requirements and project dependencies. - -Bootstrap's general approach to writing HTML, CSS, and JavaScript, as well as our core settings, is referred to as scaffolding. This includes required responsive and cross browser enhancements, dependencies, and more. - -## Contents - -* Will be replaced with the ToC, excluding the "Contents" header -{:toc} - -## HTML5 doctype - -Bootstrap makes use of certain HTML elements and CSS properties that **require** the use of the HTML5 doctype. Include it at the beginning of all your projects. - -{% highlight html %} -<!DOCTYPE html> -<html lang="en"> - ... -</html> -{% endhighlight %} - -## Mobile first - -Bootstrap is developed *mobile first*, a strategy in which we optimize code for mobile devices first and then scale up components as necessary using CSS media queries. - -To ensure proper rendering and touch zooming, **add the viewport meta tag** to your `<head>`. - -{% highlight html %} -<meta name="viewport" content="width=device-width, initial-scale=1"> -{% endhighlight %} - -## Normalize - -For improved cross-browser rendering, we use [Normalize.css](http://necolas.github.io/normalize.css/) to correct small inconsistencies across browsers and devices. - -## Important CSS resets - -Still need to do this section. Should port the third party section about box sizing and edit it for here, then add the rest of the list items. - -Will also require rearranging the scaffolding.less file. - -- Box sizing -- Form elements and their fonts -- Global link colors -- Responsive images |
