<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Designer. Gamer. Geek. &#187; Core CSS</title>
	<atom:link href="http://www.designergamergeek.com/all/projects/core-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designergamergeek.com</link>
	<description>Covering design, games, technology, politics and food!</description>
	<lastBuildDate>Wed, 03 Mar 2010 23:50:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Core CSS 1.2.1 update</title>
		<link>http://www.designergamergeek.com/projects/core-css-1-2-1-update/</link>
		<comments>http://www.designergamergeek.com/projects/core-css-1-2-1-update/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:42:28 +0000</pubDate>
		<dc:creator>Paul West</dc:creator>
				<category><![CDATA[Core CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[1.2.1]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[minified]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[standardized]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=399</guid>
		<description><![CDATA[This is a small update to Core CSS 1.2 which includes bug fixes and additions. For more information see the full page details.
There are two new additions with this update. The first is a class to handle negative text indentation for image replacement items, attach this class to any item you want to hide from [...]]]></description>
			<content:encoded><![CDATA[<p>This is a small update to <a title="See Core CSS 1.2" href="/projects/core-css-1-2-update/" target="_blank">Core CSS 1.2</a> which includes bug fixes and additions. For more information see the full page details.<span id="more-399"></span></p>
<p>There are two new additions with this update. The first is a class to handle negative text indentation for image replacement items, attach this class to any item you want to hide from user view but still have in the page for search engines to read. The second addition is three classes to help you control your text transformations, it&#8217;s now easy to handle text that comes in at the wrong case.</p>
<p>I fixed a minor spelling issue with all the charcoal named elements. I&#8217;ve left the old spelling in place, if you&#8217;ve used this style on other sites you can feel free to update your Core CSS without fear of those older classes breaking. I also adjusted the colors of the standard input elements slightly, they should now be more readable.</p>
<p>As always; using this code requires you include <a title="Download Reset CSS now" href="http://meyerweb.com/eric/css/" target="_blank">Eric Meyer&#8217;s Reset CSS</a> before Core CSS. This can be included either at the beginning of Core CSS or in a separate file which is called first.</p>
<p><strong>Change log</strong> 1.2 &gt; 1.2.1<br />
1. + Added new Class txtImg. Used on image replacement items to remove the text from user display.<br />
2. + Added three new Classes to handle Text Transforms: capitalize, uppercase, lowercase.<br />
3. -/+ Fixed a minor spelling error: charcol becomes charcoal. Old spelling left for backwards compatibility.<br />
4. -/+ Amended colors on standard input items to be more user friendly.</p>
<p><strong>There are three ways for you to download the code.</strong><br />
1. Copy and paste the code listed below.</p>
<p>2. <a title="Download the incompressed version of Core CSS 1.2.1" href="/downloads/core.1.2.1.css" target="_blank">Download a file containing the full Core CSS</a>.</p>
<p>3. <a title="Download the minified version of Core CSS 1.2.1" href="/downloads/core.1.2.1.min.css" target="_blank">Download a file containing a minified version of Core CSS</a>.</p>
<pre class="brush: css;">
/* core.css Paul West [http://www.yaypaul.com] */
/* Version: 1.2.1 - 2010-01-18 */

body{background:#fff;}

/* Block level */
div{overflow:hidden;}
.visible{overflow:visible;}
p.closed{margin:0;}
p.open{margin:35px 0 0 0;}
p.mini{margin:10px 0 0 0;}
.float{float:left !important;}
.floatRight{float:right !important;}
.relative{position:relative !important;}
.absolute{position:absolute !important;}
.fixed{position:fixed !important;}
.hidden{display:none}
.block{display:block}
.top{position:fixed; top:0; z-index:10;}
.txtImg{text-indent:-2000px;}

/* Page frameworks */
.frameworkCenter{margin:0 auto;}
.frameworkLeft{left:0; top:0; position:absolute;}
.frameworkRight{right:0; top:0; position:absolute;}

/* Page layout */
.width100{width:100% !important;}
.width75{width:75% !important;}
.width66{width:66% !important;}
.width50{width:50% !important;}
.width25{width:25% !important;}
.width33{width:33% !important;}
.width20{width:20% !important;}

/* Clearing */
.clear{clear:both;}
.clearLeft{clear:left;}
.clearRight{clear:right;}

/* Content control */
.left{text-align:left !important;}
.right{text-align:right !important;}
.center{text-align:center !important;}
.justify{text-align:justify !important;}
.capitalize{text-transform:capitalize;}
.uppercase{text-transform:uppercase;}
.lowercase{text-transform:lowercase;}
.small{font-size:smaller;}
pre{background-color:#fff; border:#333 dashed 1px; padding:10px;}
blockquote{padding:20px; font-style:italic;}

/* Links */
a{text-decoration:underline;}
a:hover{text-decoration:none;}
a:visited{text-decoration:underline;}

/* Colours */
.white{color:#fff !important;}
.black{color:#000 !important;}
.chalk{color:#eee;}
.charcol, .charcoal{color:#333;}
.darkestGrey{color:#484848;}
.darkGrey{color:#666;}
.midGrey{color:#888;}
.lightGrey{color:#ccc;}
.lightestGrey{color:#e5e5e5;}

/* Background colours */
.whiteBg{background-color:#fff !important;}
.blackBg{background-color:#000 !important;}
.chalkBg{background-color:#eee;}
.charcolBg, .charcoalBg{background-color:#333;}
.darkestGreyBg{background-color:#484848;}
.darkGreyBg{background-color:#666;}
.midGreyBg{background-color:#999;}
.lightGreyBg{background-color:#ccc;}
.lightestGreyBg{background-color:#e5e5e5;}
.superLightGreyBg{background-color:#f5f5f5;}

/* Normalise headings */
h1, h2, h3, h4, h5, h6{font-weight:normal;}

/* Table formating */
table td{padding:2px;}
td.first{padding:2px 2px 2px 4px;}

/* Input formating */
input, select, textarea{font-family:Arial, Helvetica, sans-serif; margin-right:10px; padding:4px; background-color:#e5e5e5; border:0;}
input:focus, select:focus, textarea:focus{background-color:#f5f5f5;}
input[type=&quot;radio&quot;]{border:0 solid !important;}
input[type=&quot;checkbox&quot;]{border:0 solid !important;}
input[type=&quot;submit&quot;]{background-color:#e5e5e5;}
input[type=&quot;submit&quot;]:hover{background-color:#75d0ff;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/core-css-1-2-1-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Core CSS 1.2 update</title>
		<link>http://www.designergamergeek.com/projects/core-css-1-2-update/</link>
		<comments>http://www.designergamergeek.com/projects/core-css-1-2-update/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 02:15:39 +0000</pubDate>
		<dc:creator>Paul West</dc:creator>
				<category><![CDATA[Core CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[1.2]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[minified]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[standardized]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.designergamergeek.com/?p=348</guid>
		<description><![CDATA[I&#8217;ve being using Core CSS at every opportunity, for both personal and production sites. Using the code so frequently has helped me find some flaws and add a few classes that we&#8217;re sorely missing. Core CSS gets an update to 1.2.
The first thing I noticed that needed changing was the way the standard width classes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve being using <a title="See the original Core CSS" href="/projects/core-css/">Core CSS</a> at every opportunity, for both personal and production sites. Using the code so frequently has helped me find some flaws and add a few classes that we&#8217;re sorely missing. Core CSS gets an update to 1.2.<span id="more-348"></span></p>
<p>The first thing I noticed that needed changing was the way the standard width classes were named; fullWidth and quarterWidth while intuitive just aren&#8217;t as intuitive as width100 and width25. Switching to percentages made way more sense.  I&#8217;ve listed a full change log below, but I think you&#8217;ll agree Core CSS has become that little bit easier to use.</p>
<p>As always; using this code requires you include <a title="Download Reset CSS now" href="http://meyerweb.com/eric/css/" target="_blank">Eric Meyer&#8217;s Reset CSS</a> before Core CSS. This can be included either at the beginning of Core CSS or in a separate file which is called first &#8211; I prefer the first method.</p>
<p><strong>Change log</strong> 1.0 &gt; 1.2<br />
1. &#8211; Removed standardized &#8216;P&#8217; style (I found there were far less bugs if this was set per project).<br />
2. + Added &#8216;P.mini&#8217; class (complements P.open nicely).<br />
3. + Added &#8216;fixed&#8217; class (useful for quick positioning).<br />
4. -/+ Revamped all width definitions to exactly match widths required (fullWidth becomes width100 etc).<br />
5. + Added &#8216;lightestGrey&#8217; class (useful for dark background small-print).<br />
6. + Added &#8216;lightestGreyBg&#8217; class (helpful for footer backgrounds etc).<br />
7. + Added &#8217;superLightGreyBg&#8217; class (extension of lightestGreyBg, again for footers, box backgrounds etc).<br />
8. -/+ Revamped &#8216;input&#8217; styles to be more neutral (should now be a proper option, rather than just a reminder to change the styles).</p>
<p><strong>There are three ways for you to download the code.</strong><br />
1. Copy and paste the code listed below.</p>
<p>2. <a title="Download Core CSS now" href="/downloads/core.1.2.css" target="_blank">Download a file containing the full Core CSS</a>.</p>
<p>3. <a title="Download the Minified Core CSS now" href="/downloads/core.1.2.min.css" target="_blank">Download a file containing a minified version of Core CSS</a>.</p>
<pre class="brush: css;">
/* core.css Paul West [http://www.yaypaul.com] */
/* Version: 1.2 - 2009-08-22 */

body{background: #fff;}

/* Block level */
div{overflow:hidden;}
.visible{overflow:visible;}
p.closed{margin:0;}
p.open{margin:35px 0 0 0;}
p.mini{margin:10px 0 0 0;}
.float{float:left !important;}
.floatRight{float:right !important;}
.relative{position:relative !important;}
.absolute{position:absolute !important;}
.fixed{position:fixed !important;}
.hidden{display:none}
.block{display:block}
.top{position:fixed; top:0; z-index:10;}

/* Page frameworks */
.frameworkCenter{margin:0 auto;}
.frameworkLeft{left:0; top:0; position:absolute;}
.frameworkRight{right:0; top:0; position:absolute;}

/* Page layout */
.width100{width:100% !important;}
.width75{width:75% !important;}
.width66{width:66% !important;}
.width50{width:50% !important;}
.width25{width:25% !important;}
.width33{width:33% !important;}
.width20{width:20% !important;}

/* Clearing */
.clear{clear:both;}
.clearLeft{clear:left;}
.clearRight{clear:right;}

/* Content control */
.left{text-align:left !important;}
.right{text-align:right !important;}
.center{text-align:center !important;}
.justify{text-align:justify !important;}
.small{font-size:smaller;}
pre{background-color:#fff; border:#333 dashed 1px; padding:10px;}
blockquote{padding:20px; font-style:italic;}

/* Links */
a{text-decoration:underline;}
a:hover{text-decoration:none;}
a:visited{text-decoration:underline;}

/* Colours */
.white{color:#fff !important;}
.black{color:#000 !important;}
.chalk{color:#eee;}
.charcol{color:#333;}
.darkestGrey{color:#484848;}
.darkGrey{color:#666;}
.midGrey{color:#888;}
.lightGrey{color:#ccc;}
.lightestGrey{color:#e5e5e5;}

/* Background colours */
.whiteBg{background-color:#fff !important;}
.blackBg{background-color:#000 !important;}
.chalkBg{background-color:#eee;}
.charcolBg{background-color:#333;}
.darkestGreyBg{background-color:#484848;}
.darkGreyBg{background-color:#666;}
.midGreyBg{background-color:#999;}
.lightGreyBg{background-color:#ccc;}
.lightestGreyBg{background-color:#e5e5e5;}
.superLightGreyBg{background-color:#f5f5f5;}

/* Normalise headings */
h1, h2, h3, h4, h5, h6{font-weight:normal;}

/* Table formating */
table td{padding:2px;}
td.first{padding:2px 2px 2px 4px;}

/* Input formating */
input, select, textarea{font-family:Arial, Helvetica, sans-serif; margin-right:10px; padding:4px; background-color:#dbdbdb; border:0;}
input:focus, select:focus, textarea:focus{background-color:#f5f5f5;}
input[type=&quot;radio&quot;]{border:0 solid !important;}
input[type=&quot;checkbox&quot;]{border:0 solid !important;}
input[type=&quot;submit&quot;]{background-color:#888;}
input[type=&quot;submit&quot;]:hover{background-color:#4aa056;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/core-css-1-2-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Core CSS</title>
		<link>http://www.designergamergeek.com/projects/core-css/</link>
		<comments>http://www.designergamergeek.com/projects/core-css/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 16:17:51 +0000</pubDate>
		<dc:creator>Paul West</dc:creator>
				<category><![CDATA[Core CSS]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[standardized]]></category>

		<guid isPermaLink="false">http://192.168.50.20:8888/?p=99</guid>
		<description><![CDATA[Core CSS started life as a series of standardized custom CSS tags which I used within the various websites I create. With the creation of Reset CSS by Eric Meyer many of these tags became obsolete. Which set me thinking about a standard set of CSS tags all sites could use in conjunction with Reset [...]]]></description>
			<content:encoded><![CDATA[<p>Core CSS started life as a series of standardized custom CSS tags which I used within the various websites I create. With the creation of <a title="Link to Reset CSS" href="http://meyerweb.com/eric/css/" target="_blank">Reset CSS by Eric Meyer</a> many of these tags became obsolete. Which set me thinking about a standard set of CSS tags all sites could use in conjunction with Reset CSS.</p>
<p><span id="more-99"></span></p>
<p>Core CSS is simply that: a set of tags which you use individually or together to define basic layout structures of web pages. Not to be confused with a framework or a &#8216;here I&#8217;ve done all the work&#8217; CSS file, that&#8217;s not what this is.  You&#8217;ll still need to create a custom CSS file for each different sites you create, but using Core CSS means you wont have to recreate many of the tags and settings you and I use every day.</p>
<p>There are two ways for you to download the code.</p>
<p>1. Copy and paste the code listed below.</p>
<p>2. OR <a title="Download Core CSS now!" href="/downloads/core-css" target="_blank">download a file</a> containing Core CSS.</p>
<p>As with every project I&#8217;m sure I&#8217;ll find new things to add to the CSS file. And as with any project supplied to the public I&#8217;m sure you will find things you use missing or extras you&#8217;d like to add.  While you can add extra or missing items to your own files I&#8217;d like to encourage you to come and post back in the comments with your ideas and additions.  While I can&#8217;t promise I&#8217;ll add everything in, I will promise to review their relevance and usefulness to the community.</p>
<pre class="brush: css;">/*
core.css [screen]
- - - - - - - - - - - - - - - - - - - -
Creator:    Paul West [paulanthonywest.com]
Version:    1.0
Date:        2008-08-29
*/
body{background: #fff;}

/* Block level */
div{overflow:hidden;}
.visible{overflow:visible;}
p{margin:0 0 25px 0;}
p.closed{margin:0;}
p.open{margin:0 0 35px 0;}
.float{float:left !important;}
.floatRight{float:right !important;}
.relative{position:relative !important;}
.absolute{position:absolute !important;}
.hidden{display:none}
.block{display:block}
.top{position:fixed; top:0;}

/* Page frameworks */
.frameworkCenter{margin:0 auto;}
.frameworkLeft{left:0; top:0; position:absolute;}
.frameworkRight{right:0; top:0; position:absolute;}

/* Page layout */
.fullWidth{width:100% !important;}
.halfWidth{width:50% !important;}
.quarterWidth{width:25% !important;}
.thirdWidth{width:33% !important;}
.fifthWidth{width:20% !important;}

/* Clearing */
.clear{clear:both;}
.clearLeft{clear:left;}
.clearRight{clear:right;}

/* Content control */
.left{text-align:left !important;}
.right{text-align:right !important;}
.center{text-align:center !important;}
.justify{text-align:justify !important;}
.small{font-size:smaller;}
pre{background-color:#fff; border:#333 dashed 1px; padding:10px;}
blockquote{padding:20px; font-style:italic;}

/* Links */
a{text-decoration:underline;}
a:hover{text-decoration:none;}
a:visited{text-decoration:underline;}

/* Colours */
.white{color:#fff !important;}
.black{color:#000 !important;}
.chalk{color:#eee;}
.charcol{color:#333;}
.darkestGrey{color:#484848;}
.darkGrey{color:#666;}
.midGrey{color:#999;}
.lightGrey{color:#ccc;}

/* Background colours */
.whiteBg{background-color:#fff !important;}
.blackBg{background-color:#000 !important;}
.chalkBg{background-color:#eee;}
.charcolBg{background-color:#333;}
.darkestGreyBg{background-color:#484848;}
.darkGreyBg{background-color:#666;}
.midGreyBg{background-color:#999;}
.lightGreyBg{background-color:#ccc;}

/* Normalise Headings */
h1, h2, h3, h4, h5, h6{font-weight:normal;}

/* Table formating */
table td{padding:2px;}
td.first{padding:2px 2px 2px 4px;}

/* Input formating */
input, select, textarea{margin-right:10px; padding:4px; background-color:#eee; border:0;}
input:focus, select:focus, textarea:focus{background-color:#fff;}
input[type=&quot;radio&quot;]{border:0 solid !important;}
input[type=&quot;checkbox&quot;]{border:0 solid !important;}
input[type=&quot;submit&quot;]:hover{background-color:#9cd7f1;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.designergamergeek.com/projects/core-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
