diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 32f1258d63c7f945a0fad759afee89995e5bf4fd..d67aa9b152bb04bdcab5c83b8284b5175eceef0c 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -725,6 +725,9 @@ pre code { } @media screen and (min-width: 768px) { + .container { + max-width: 728px; + } [class^="span"] { float: left; } diff --git a/docs/components.html b/docs/components.html index c1049747c24989206b6aaee446c8a598591ed66e..73261610caf15111ba3d9ca9efaf83285bc7e70a 100644 --- a/docs/components.html +++ b/docs/components.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class=""> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class="active"> <a href="./components.html">Components</a> diff --git a/docs/css.html b/docs/css.html index e4499e571dc4ec4d60bd6b476947aff43184120a..e91ef3d68049d9e27d2227e52acb4c4b1619ecc1 100644 --- a/docs/css.html +++ b/docs/css.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class="active"> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class=""> <a href="./components.html">Components</a> diff --git a/docs/customize.html b/docs/customize.html index 7daed4fd79ff2fa3eb89fe9907578830df905c3f..c8b9a3b81faff82cebdb0fcd79ef7063d76baabc 100644 --- a/docs/customize.html +++ b/docs/customize.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class=""> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class=""> <a href="./components.html">Components</a> diff --git a/docs/gallery.html b/docs/gallery.html index 2bc3320f6139655cbf60521d73fc1165709c584a..07002b081a939d7fbb087070b3e97d75d97c383b 100644 --- a/docs/gallery.html +++ b/docs/gallery.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class=""> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class=""> <a href="./components.html">Components</a> diff --git a/docs/getting-started.html b/docs/getting-started.html index 144acda0c812cedd0bc923724c9a64e6b152858a..99377ef2f0b2309bccf41dfa1a942405e67a10be 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class=""> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class=""> <a href="./components.html">Components</a> diff --git a/docs/index.html b/docs/index.html index b9647bcb0d6d0a832bc27bc1e5d55cd57431f292..e7d3076315b3fa973f6a35951e15b9fd550166d4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class=""> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class=""> <a href="./components.html">Components</a> diff --git a/docs/javascript.html b/docs/javascript.html index 81bc40ad431f72870b2b3ea18bf614bcc59c51d7..6d552aed006f0e992f93dbf9b1bcba22ba095c79 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -47,7 +47,7 @@ <a href="./getting-started.html">Get started</a> </li> <li class=""> - <a href="./css.html">Core CSS</a> + <a href="./css.html">CSS</a> </li> <li class=""> <a href="./components.html">Components</a> diff --git a/docs/templates/layout.mustache b/docs/templates/layout.mustache index 47fc756500cd4c4bdb73c520841a39adeebd41d8..776e452884f9c3319f286b67576809af480ba762 100644 --- a/docs/templates/layout.mustache +++ b/docs/templates/layout.mustache @@ -59,7 +59,7 @@ <a href="./getting-started.html">{{_i}}Get started{{/i}}</a> </li> <li class="{{css}}"> - <a href="./css.html">{{_i}}Core CSS{{/i}}</a> + <a href="./css.html">{{_i}}CSS{{/i}}</a> </li> <li class="{{components}}"> <a href="./components.html">{{_i}}Components{{/i}}</a> diff --git a/less/grid.less b/less/grid.less index 521e64904a7196669e810072be2a12cc2bf12c30..47636189bfd34ea7ce6700d20b94e1664914051f 100644 --- a/less/grid.less +++ b/less/grid.less @@ -27,6 +27,10 @@ // Responsive: Tablets and up @media screen and (min-width: 768px) { + .container { + max-width: 728px; + } + [class^="span"] { float: left; }