aboutsummaryrefslogtreecommitdiff
path: root/assets/css/docs.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-09-08 18:37:39 -0700
committerMark Otto <[email protected]>2013-09-08 18:37:39 -0700
commit77549410d52f86c2d42136014f5a2ae21f4cabee (patch)
treec6b2bd111d66d60dc258cd63bc38b55f18cea312 /assets/css/docs.css
parentafb6cf1d01c28bd0a1c6803f727eb7408b70c16e (diff)
downloadbootstrap-77549410d52f86c2d42136014f5a2ae21f4cabee.tar.xz
bootstrap-77549410d52f86c2d42136014f5a2ae21f4cabee.zip
Add Welcome section to docs
* Fixes unrelated typo in readme * Add new Welcome section with history, team, callouts, and community subsections * Redesigns callouts to be a bit lighterweight with colored headings
Diffstat (limited to 'assets/css/docs.css')
-rw-r--r--assets/css/docs.css64
1 files changed, 55 insertions, 9 deletions
diff --git a/assets/css/docs.css b/assets/css/docs.css
index 2b800732d..0979af07c 100644
--- a/assets/css/docs.css
+++ b/assets/css/docs.css
@@ -514,33 +514,79 @@ h1[id] {
/* Common styles for all types */
.bs-callout {
+ /*position: relative;*/
margin: 20px 0;
- padding: 15px 30px 15px 15px;
- border-left: 5px solid #eee;
+ padding: 20px;
+ border-left: 3px solid #eee;
+ /*border-width: 1px 1px 1px 10px;*/
}
+/*.bs-callout:before {
+ position: absolute;
+ top: 0;
+ left: -20px;
+ color: #fff;
+ width: 20px;
+ height: 20px;
+}*/
.bs-callout h4 {
margin-top: 0;
+ margin-bottom: 5px;
}
.bs-callout p:last-child {
margin-bottom: 0;
}
.bs-callout code,
.bs-callout .highlight {
- background-color: #fff;
+ /*background-color: #fff;*/
}
/* Variations */
.bs-callout-danger {
- background-color: #fcf2f2;
- border-color: #dFb5b4;
+ background-color: #fdf7f7;
+ border-color: #eed3d7;
+}
+.bs-callout-danger h4 {
+ color: #b94a48;
}
.bs-callout-warning {
- background-color: #fefbed;
- border-color: #f1e7bc;
+ background-color: #faf8f0;
+ border-color: #faebcc;
+}
+.bs-callout-warning h4 {
+ color: #c09853;
}
.bs-callout-info {
- background-color: #f0f7fd;
- border-color: #d0e3f0;
+ background-color: #f4f8fa;
+ border-color: #bce8f1;
+}
+.bs-callout-info h4 {
+ color: #3a87ad;
+}
+
+
+/*
+ * Team members
+ *
+ * Avatars, names, and usernames for core team.
+ */
+
+.bs-team .team-member {
+ color: #555;
+ line-height: 32px;
+}
+.bs-team .team-member:hover {
+ color: #333;
+ text-decoration: none;
+}
+.bs-team iframe {
+ float: right;
+ margin-top: 6px;
+}
+.bs-team img {
+ float: left;
+ width: 32px;
+ margin-right: 10px;
+ border-radius: 4px;
}