This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.entry-content h4, div.entry-content h5, div.entry-content h6, | |
div.entry-content p { | |
margin-bottom: 5px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.entry-content h4, h5, h6, p { | |
margin-bottom: 5px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/processing"> | |
// Build float array to store circle properties | |
float[] e = new float[5]; | |
// Set up canvas | |
void setup(){ | |
// Frame rate | |
frameRate(15); | |
// Stroke/line/border thickness |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** IE (all versions) *** */ | |
/* Gets rid of IE's blue borders */ | |
a img { | |
border:none | |
} | |
* html div#content { | |
display: inline; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** Typography *** */ | |
/* Begin Structure */ | |
h1, h2, h3, h4, h5, h6 { | |
font-weight: bold; | |
} | |
body { | |
text-align: center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** Colour *** */ | |
/* Begin Structure */ | |
body { | |
background: #000000; | |
} | |
div#wrapper { | |
background: #ffffff; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** Layout *** */ | |
/* This will save you having to declare each div's position as 'relative' and | |
allows you to absolutely position elements inside them | |
div { | |
position:relative; | |
} | |
*/ | |
/* Begin Structure */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** Reset *** */ | |
/* Based upon YUI Reset CSS in the Yahoo! User Interface Library: | |
http://developer.yahoo.com/yui/reset/ */ | |
*, html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, | |
fieldset, input, textarea, p, blockquote, th, td { | |
margin: 0; | |
padding: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "style/css/reset.css"; | |
@import "style/css/layout.css"; | |
@import "style/css/colour.css"; | |
@import "style/css/typography.css"; | |
@import "style/css/ie.css"; | |
/* WordPress Generated Classes. More info: http://codex.wordpress.org/CSS */ | |
.aligncenter, div.aligncenter { | |
display: block; | |
margin-left: auto; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div id="wrapper"> | |
<!-- #header --> | |
<div id="header">Blog Title</div> | |
<!-- #navmenu --> | |
<div id="navmenu">Page List</div> | |
<div id="main"> | |
<!-- end header --> | |
<div id="container"> | |
<div id="content"> |