aboutsummaryrefslogtreecommitdiff
path: root/bootstrap-1.0.0.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-06-29 23:47:54 -0700
committerMark Otto <[email protected]>2011-06-29 23:47:54 -0700
commit1905a992d9cc8f1160930edad6ec5d52eaf06d85 (patch)
tree8a78278af7587ceb3e4c46a02c30cb69ed5ec976 /bootstrap-1.0.0.css
parentcddc565d07fed42576a55111ea60ce1b6ff5bbd9 (diff)
downloadbootstrap-1905a992d9cc8f1160930edad6ec5d52eaf06d85.tar.xz
bootstrap-1905a992d9cc8f1160930edad6ec5d52eaf06d85.zip
updated docs call to actions for using bootstrap, tweaks to aesthetic
Diffstat (limited to 'bootstrap-1.0.0.css')
-rw-r--r--bootstrap-1.0.0.css45
1 files changed, 38 insertions, 7 deletions
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 */
+
+}