From b776cae902cf4cd6c0d7227214b8a835be8df750 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 17 Feb 2012 21:18:08 -0800 Subject: add mention of js compilation to single file in customize page per #2003 --- docs/assets/css/docs.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index f6a388c23..1e63cd580 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -427,17 +427,17 @@ hr.soften { .download-btn { margin: 36px 0 108px; } -.download p, -.download h4 { +#download p, +#download h4 { max-width: 50%; margin: 0 auto; color: #999; text-align: center; } -.download h4 { +#download h4 { margin-bottom: 0; } -.download p { +#download p { margin-bottom: 18px; } .download-btn .btn { -- cgit v1.2.3 From 331c85724afa7dbf41799967718b16e75f7ca816 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 20 Feb 2012 16:18:13 -0800 Subject: remove max-width on img from reset and put in docs only, per #1552 --- docs/assets/css/docs.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 1e63cd580..f5d63f90d 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -482,8 +482,7 @@ hr.soften { /* Misc -------------------------------------------------- */ - -.browser-support { +img { max-width: 100%; } -- cgit v1.2.3 From f3ad4c7183251713eb021a400211cc9b07577080 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 21 Feb 2012 08:24:18 -0800 Subject: adding responsive utility classes and matching docs section with super neato table and test --- docs/assets/css/docs.css | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index f5d63f90d..36da6853c 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -557,6 +557,70 @@ form.well { background-color: #fff; } +/* Responsive table +------------------------- */ +.responsive-utilities th small { + display: block; + font-weight: normal; + color: #999; +} +.responsive-utilities tbody th { + font-weight: normal; +} +.responsive-utilities td { + text-align: center; +} +.responsive-utilities td.is-visible { + color: #468847; + background-color: #dff0d8 !important; +} +.responsive-utilities td.is-hidden { + color: #ccc; + background-color: #f9f9f9 !important; +} + +/* Responsive tests +------------------------- */ +.responsive-utilities-test { + margin-top: 5px; + margin-left: 0; + list-style: none; + overflow: hidden; /* clear floats */ +} +.responsive-utilities-test li { + position: relative; + float: left; + width: 25%; + height: 43px; + font-size: 14px; + font-weight: bold; + line-height: 43px; + color: #999; + text-align: center; + border: 1px solid #ddd; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.responsive-utilities-test li + li { + margin-left: 10px; +} +.responsive-utilities-test span { + position: absolute; + top: -1px; + left: -1px; + right: -1px; + bottom: -1px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} +.responsive-utilities-test span { + color: #468847; + background-color: #dff0d8; + border: 1px solid #d6e9c6; +} + /* Responsive Docs -------------------------------------------------- */ -- cgit v1.2.3 From 430915305178cc091f1d121ad98a50b93ccf99cd Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 24 Feb 2012 21:02:24 -0800 Subject: add version to docs homepage, fix docs example for forms --- docs/assets/css/docs.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/assets/css/docs.css') diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 36da6853c..d62ce4beb 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -79,6 +79,9 @@ hr.soften { -moz-border-radius: 6px; border-radius: 6px; } +.jumbotron .btn-large small { + font-size: 14px; +} /* Masthead (docs home) */ .masthead { -- cgit v1.2.3