compass/test/fixtures/stylesheets/blueprint/css/typography.css

204 lines
7.4 KiB
CSS
Raw Normal View History

2009-11-30 03:05:40 +00:00
/* line 26, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
body {
line-height: 1.5;
2009-04-07 06:56:29 +00:00
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
color: #333333;
font-size: 75%; }
2009-11-30 03:05:40 +00:00
/* line 58, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h1 {
font-weight: normal;
color: #222222;
font-size: 3em;
line-height: 1;
margin-bottom: 0.5em; }
2009-11-30 03:05:40 +00:00
/* line 63, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h1 img {
margin: 0; }
2009-11-30 03:05:40 +00:00
/* line 65, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h2 {
font-weight: normal;
color: #222222;
font-size: 2em;
margin-bottom: 0.75em; }
2009-11-30 03:05:40 +00:00
/* line 69, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h3 {
font-weight: normal;
color: #222222;
font-size: 1.5em;
line-height: 1;
margin-bottom: 1em; }
2009-11-30 03:05:40 +00:00
/* line 74, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h4 {
font-weight: normal;
color: #222222;
font-size: 1.2em;
line-height: 1.25;
2009-04-07 06:56:29 +00:00
margin-bottom: 1.25em; }
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
2009-11-30 03:05:40 +00:00
/* line 79, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h5 {
font-weight: normal;
color: #222222;
font-size: 1em;
font-weight: bold;
margin-bottom: 1.5em; }
2009-11-30 03:05:40 +00:00
/* line 84, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h6 {
font-weight: normal;
color: #222222;
font-size: 1em;
font-weight: bold; }
2009-11-30 03:05:40 +00:00
/* line 88, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
h2 img, h3 img, h4 img, h5 img, h6 img {
margin: 0; }
2009-11-30 03:05:40 +00:00
/* line 90, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
p {
margin: 0 0 1.5em; }
2009-11-30 03:05:40 +00:00
/* line 92, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-04-07 06:56:29 +00:00
p img.left {
2009-04-03 05:53:42 +00:00
display: inline;
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
float: left;
margin: 1.5em 1.5em 1.5em 0;
padding: 0; }
2009-11-30 03:05:40 +00:00
/* line 96, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-04-07 06:56:29 +00:00
p img.right {
display: inline;
float: right;
margin: 1.5em 0 1.5em 1.5em;
padding: 0; }
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
2009-11-30 03:05:40 +00:00
/* line 100, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
a {
text-decoration: underline;
color: #000099; }
2009-11-30 03:05:40 +00:00
/* line 12, /Users/chris/Projects/compass/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
a:visited {
color: #000066; }
2009-11-30 03:05:40 +00:00
/* line 15, /Users/chris/Projects/compass/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
a:focus {
color: black; }
2009-11-30 03:05:40 +00:00
/* line 18, /Users/chris/Projects/compass/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
a:hover {
color: black; }
2009-11-30 03:05:40 +00:00
/* line 21, /Users/chris/Projects/compass/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
a:active {
color: #cc0099; }
2009-11-30 03:05:40 +00:00
/* line 103, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
blockquote {
margin: 1.5em;
color: #666;
font-style: italic; }
2009-11-30 03:05:40 +00:00
/* line 107, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
strong {
font-weight: bold; }
2009-11-30 03:05:40 +00:00
/* line 109, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
em {
font-style: italic; }
2009-11-30 03:05:40 +00:00
/* line 111, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
dfn {
font-style: italic;
font-weight: bold; }
2009-11-30 03:05:40 +00:00
/* line 114, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
sup, sub {
line-height: 0; }
2009-11-30 03:05:40 +00:00
/* line 116, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
abbr, acronym {
border-bottom: 1px dotted #666; }
2009-11-30 03:05:40 +00:00
/* line 118, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
address {
margin: 0 0 1.5em;
font-style: italic; }
2009-11-30 03:05:40 +00:00
/* line 121, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
del {
color: #666; }
2009-11-30 03:05:40 +00:00
/* line 123, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-04-07 06:56:29 +00:00
pre {
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
margin: 1.5em 0;
2009-04-07 06:56:29 +00:00
white-space: pre; }
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
2009-11-30 03:05:40 +00:00
/* line 126, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-04-07 06:56:29 +00:00
pre, code, tt {
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
font: 1em 'andale mono', 'lucida console', monospace;
line-height: 1.5; }
2009-11-30 03:05:40 +00:00
/* line 129, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
li ul, li ol {
2009-11-24 18:36:51 +00:00
margin: 0; }
2009-11-30 03:05:40 +00:00
/* line 131, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-11-24 18:36:51 +00:00
ul, ol {
margin: 0 1.5em 1.5em 0;
padding-left: 3.333em; }
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
2009-11-30 03:05:40 +00:00
/* line 134, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
ul {
list-style-type: disc; }
2009-11-30 03:05:40 +00:00
/* line 136, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
ol {
list-style-type: decimal; }
2009-11-30 03:05:40 +00:00
/* line 138, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
dl {
margin: 0 0 1.5em 0; }
2009-11-30 03:05:40 +00:00
/* line 140, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
dl dt {
font-weight: bold; }
2009-11-30 03:05:40 +00:00
/* line 142, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
dd {
margin-left: 1.5em; }
2009-11-30 03:05:40 +00:00
/* line 144, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
table {
margin-bottom: 1.4em;
width: 100%; }
2009-11-30 03:05:40 +00:00
/* line 147, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
th {
2009-04-07 06:56:29 +00:00
font-weight: bold; }
2009-11-30 03:05:40 +00:00
/* line 149, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-04-07 06:56:29 +00:00
thead th {
background: #c3d9ff; }
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
2009-11-30 03:05:40 +00:00
/* line 151, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
2009-04-07 06:56:29 +00:00
th, td, caption {
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
padding: 4px 10px 4px 5px; }
2009-11-30 03:05:40 +00:00
/* line 153, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
tr.even td {
2009-04-07 06:56:29 +00:00
background: #e5ecf9; }
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
2009-11-30 03:05:40 +00:00
/* line 155, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
tfoot {
font-style: italic; }
2009-11-30 03:05:40 +00:00
/* line 157, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
caption {
background: #eee; }
2009-11-30 03:05:40 +00:00
/* line 159, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
.quiet {
color: #666666; }
2009-11-30 03:05:40 +00:00
/* line 161, /Users/chris/Projects/compass/lib/compass/frameworks/blueprint/stylesheets/blueprint/./_typography.sass */
Coding spree to clean up the blueprint stylesheets and make them more similar to blueprint-css, more configurable, and more consistent. Breakdown of changes: === Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level. === Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden. === Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.) === Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured. === The liquid grid now uses the compass clearfix. === moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers. === blueprint grid classes are now appropriately scoped under the .container class.
2008-12-06 21:41:37 +00:00
.loud {
color: #111111; }