Skip to content

Instantly share code, notes, and snippets.

@studiomohawk
Created July 25, 2010 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save studiomohawk/489368 to your computer and use it in GitHub Desktop.
Save studiomohawk/489368 to your computer and use it in GitHub Desktop.
/*
Theme Name: S.M. Framework
Theme URI: http://css.studiomohawk.com/
Description: A theme framework for Studio Mohawk Design.
Author: Studio Mohawk Design.
Version: 1.0
Tags: diy,minimum
*/
/* @import
----------------------------------------------- */
@import url('css/reset.css');
@import url('css/base.css');
@import url('css/mod.css');
@import url('css/text.css');
@import url('css/960.css');
@import url('css/color.css');
/* @import jQuery plugin related css
----------------------------------------------- */
/* TABLE OF CONTENTS
-----------------------------------------------
GLOBAL
HEADER
NAVIGATION
MAIN
FOOTER
*/
/* GLOBAL
----------------------------------------------- */
html {
background-color: #424242;
color: #fafafa;
}
/* link */
a:link {
color: #f2f2f2;
text-decoration: none;
}
a:visited {
color: #e1e1e1;
text-decoration: none;
}
a:hover {
color: #ffffff;
text-decoration: none;
}
/* wordpress */
.alignleft {
float: left;
margin-right: 10px;
}
.alignright {
float: right;
margin-left: 10px;
}
/* HEADER
----------------------------------------------- */
.the_header {
background-color: #000000;
border-bottom: 1px solid #646464;
padding: 30px;
}
.the_header nav {}
.the_header nav li { display: inline-block; }
.the_header nav .logo {
font-size: 2em;
font-variant: small-caps;
margin: 0 50px 0 10px;
}
.the_header nav .rss,
.the_header nav .twitter {
font-variant: small-caps;
margin: 0 25px 0 0;
}
/* NAVIGATION
----------------------------------------------- */
/* MAIN
----------------------------------------------- */
#body h1, #body h2, #body h3, #body h4, #body h5, #body h6 { text-shadow: 0 1px 1px #424242; }
/* index.php */
.home #body .hentry .bd p {
-webkit-column-count: 2;
-webkit-column-gap: 10px;
-moz-column-count: 2;
-moz-column-gap: 10px;
column-count: 2;
column-gap: 10px;
}
/* single.php */
.single #body section article header { padding-left: 330px; }
.single #body section article .bd { padding-left: 320px; }
.single #body section article aside {
left: 10px;
position: absolute;
width: 306px;
}
.single #body section article blockquote {
border-left: 10px solid #333333;
margin: 24px 0;
padding: 0 0 0 10px;
}
.single #body section article ul { list-style: square; }
.single #body section article ol { list-style: decimal; }
/* FOOTER
----------------------------------------------- */
.the_footer {
background-color: #000000;
border-top: 1px solid #646464;
margin-top: 52px;
padding: 30px;
}
.the_footer h4 {
font-size:1.23077em;
padding: 0 0 30px 0;
}
.the_footer ul {
border-top: 1px solid #313131;
}
.the_footer ul li a {
display: block;
border-bottom: 1px solid #313131;
padding: 3px 0;
}
.the_footer ul li a:link {}
.the_footer ul li a:visited { background-color: #424242;}
.the_footer ul li a:hover { background-color: #424242; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment