aboutsummaryrefslogtreecommitdiff
path: root/lib/type.less
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-01-31 13:18:34 -0800
committerJacob Thornton <[email protected]>2012-01-31 13:18:34 -0800
commit0bfbe5058d61ae93d82b09f1dff7eb30dc22426e (patch)
tree6ccf3dd9c36ff4b1f6cde5edbce21cdf0de78497 /lib/type.less
parent43cbc9440425b7c97c943690eefd14520de708e1 (diff)
parent4bd1ba4e0dc44d1d16161306576548f378ab1f8a (diff)
downloadbootstrap-0bfbe5058d61ae93d82b09f1dff7eb30dc22426e.tar.xz
bootstrap-0bfbe5058d61ae93d82b09f1dff7eb30dc22426e.zip
Merge branch '2.0-wip'
Conflicts: .gitignore LICENSE Makefile bootstrap.css bootstrap.min.css docs/assets/js/application.js docs/assets/js/google-code-prettify/prettify.css docs/index.html docs/javascript.html examples/container-app.html examples/fluid.html examples/hero.html js/bootstrap-alerts.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tabs.js js/bootstrap-twipsy.js js/tests/index.html js/tests/unit/bootstrap-modal.js js/tests/unit/bootstrap-popover.js js/tests/unit/bootstrap-tabs.js lib/forms.less lib/mixins.less lib/patterns.less lib/scaffolding.less lib/tables.less
Diffstat (limited to 'lib/type.less')
-rw-r--r--lib/type.less187
1 files changed, 0 insertions, 187 deletions
diff --git a/lib/type.less b/lib/type.less
deleted file mode 100644
index 077ae9d8f..000000000
--- a/lib/type.less
+++ /dev/null
@@ -1,187 +0,0 @@
-/* Typography.less
- * Headings, body text, lists, code, and more for a versatile and durable typography system
- * ---------------------------------------------------------------------------------------- */
-
-
-// BODY TEXT
-// ---------
-
-p {
- #font > .shorthand(normal,@basefont,@baseline);
- margin-bottom: @baseline / 2;
- small {
- font-size: @basefont - 2;
- color: @grayLight;
- }
-}
-
-
-// HEADINGS
-// --------
-
-h1, h2, h3, h4, h5, h6 {
- font-weight: bold;
- color: @grayDark;
- small {
- color: @grayLight;
- }
-}
-h1 {
- margin-bottom: @baseline;
- font-size: 30px;
- line-height: @baseline * 2;
- small {
- font-size: 18px;
- }
-}
-h2 {
- font-size: 24px;
- line-height: @baseline * 2;
- small {
- font-size: 14px;
- }
-}
-h3, h4, h5, h6 {
- line-height: @baseline * 2;
-}
-h3 {
- font-size: 18px;
- small {
- font-size: 14px;
- }
-}
-h4 {
- font-size: 16px;
- small {
- font-size: 12px;
- }
-}
-h5 {
- font-size: 14px;
-}
-h6 {
- font-size: 13px;
- color: @grayLight;
- text-transform: uppercase;
-}
-
-
-// COLORS
-// ------
-
-// Unordered and Ordered lists
-ul, ol {
- margin: 0 0 @baseline 25px;
-}
-ul ul,
-ul ol,
-ol ol,
-ol ul {
- margin-bottom: 0;
-}
-ul {
- list-style: disc;
-}
-ol {
- list-style: decimal;
-}
-li {
- line-height: @baseline;
- color: @gray;
-}
-ul.unstyled {
- list-style: none;
- margin-left: 0;
-}
-
-// Description Lists
-dl {
- margin-bottom: @baseline;
- dt, dd {
- line-height: @baseline;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin-left: @baseline / 2;
- }
-}
-
-// MISC
-// ----
-
-// Horizontal rules
-hr {
- margin: 20px 0 19px;
- border: 0;
- border-bottom: 1px solid #eee;
-}
-
-// Emphasis
-strong {
- font-style: inherit;
- font-weight: bold;
-}
-em {
- font-style: italic;
- font-weight: inherit;
- line-height: inherit;
-}
-.muted {
- color: @grayLight;
-}
-
-// Blockquotes
-blockquote {
- margin-bottom: @baseline;
- border-left: 5px solid #eee;
- padding-left: 15px;
- p {
- #font > .shorthand(300,14px,@baseline);
- margin-bottom: 0;
- }
- small {
- display: block;
- #font > .shorthand(300,12px,@baseline);
- color: @grayLight;
- &:before {
- content: '\2014 \00A0';
- }
- }
-}
-
-// Addresses
-address {
- display: block;
- line-height: @baseline;
- margin-bottom: @baseline;
-}
-
-// Inline and block code styles
-code, pre {
- padding: 0 3px 2px;
- font-family: Monaco, Andale Mono, Courier New, monospace;
- font-size: 12px;
- .border-radius(3px);
-}
-code {
- background-color: lighten(@orange, 40%);
- color: rgba(0,0,0,.75);
- padding: 1px 3px;
-}
-pre {
- background-color: #f5f5f5;
- display: block;
- padding: (@baseline - 1) / 2;
- margin: 0 0 @baseline;
- line-height: @baseline;
- font-size: 12px;
- border: 1px solid #ccc;
- border: 1px solid rgba(0,0,0,.15);
- .border-radius(3px);
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
-
-} \ No newline at end of file