From 1905a992d9cc8f1160930edad6ec5d52eaf06d85 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 29 Jun 2011 23:47:54 -0700 Subject: updated docs call to actions for using bootstrap, tweaks to aesthetic --- bootstrap-1.0.0.css | 45 ++++++++++++++++++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 7 deletions(-) (limited to 'bootstrap-1.0.0.css') diff --git a/bootstrap-1.0.0.css b/bootstrap-1.0.0.css index abd31f47a..e3aa8d975 100644 --- a/bootstrap-1.0.0.css +++ b/bootstrap-1.0.0.css @@ -1,12 +1,12 @@ -/*!========================================================= - * Bookstrap v0.0.1 - * +/* + * Master Stylesheet + * This file is only for importing all required stylesheets for LESS to include and then compile. + * * Copyright 2011 Twitter, Inc - * Open-sourced under Apache License v2.0 - * http://www.apache.org/licenses/LICENSE-2.0 + * Open-sourced under Apache License v2.0: http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built @twitter by @mdo and @fat, like bosses. - * ========================================================== */ + */ /* Reset.less * Props to Eric Meyer (meyerweb.com) for his CSS reset file. * We're using an adapted version here that cuts out some of @@ -421,7 +421,7 @@ h3, h4, h5, h6 { - font-weight: 500; + font-weight: bold; color: #404040; } h1 small, @@ -1552,3 +1552,34 @@ div.modal .modal-footer .btn { float: right; margin-left: 10px; } +div.quickstart { + background-color: #f5f5f5; + background-repeat: repeat-x; + background-image: -khtml-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f5f5f5)); + /* Konqueror */ + + background-image: -moz-linear-gradient(#f9f9f9, #f5f5f5); + /* FF 3.6+ */ + + background-image: -ms-linear-gradient(#f9f9f9, #f5f5f5); + /* IE10 */ + + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #f5f5f5)); + /* Safari 4+, Chrome 2+ */ + + background-image: -webkit-linear-gradient(#f9f9f9, #f5f5f5); + /* Safari 5.1+, Chrome 10+ */ + + background-image: -o-linear-gradient(#f9f9f9, #f5f5f5); + /* Opera 11.10 */ + + -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f5f5f5', GradientType=0)"; + /* IE8+ */ + + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f5f5f5', GradientType=0); + /* IE6 & IE7 */ + + background-image: linear-gradient(#f9f9f9, #f5f5f5); + /* the standard */ + +} -- cgit v1.2.3