Skip to content

Instantly share code, notes, and snippets.

@simplethemes
Created September 27, 2012 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save simplethemes/3796594 to your computer and use it in GitHub Desktop.
Save simplethemes/3796594 to your computer and use it in GitHub Desktop.
Utility Styles
/* ----------------------------------------------------- */
/* Utitlity Styles */
/* ----------------------------------------------------- */
/* Simple Image Thumbnails */
img.imgleft {
float: left;
margin: 0 10px 0 0;
}
img.imgright {
float: right;
margin: 0 0 0 10px;
}
img.imgright,
img.imgleft {
border: 1px solid #eaeaea;
background-color: #fff;
padding: 2px;
}
/* Image Thumbnails - No Borders */
img.imgright.nostyle,
img.imgleft.nostyle {
border: none;
background-color: transparent;
padding: 0;
}
.noborder {
border: none;
}
/* Quick Floats */
.left, .floatleft {
float: left;
}
.right, .floatright {
float: right;
}
.center {
float: none;
margin: 0 auto;
text-align: center;
display: block;
}
/* Quick Text Alignment */
.textcenter {
text-align: center;
}
.textleft {
text-align: left;
}
.textright {
text-align: right;
}
/* Small Text */
small,.small {
font-size: 12px;
color: #5b5b5b;
}
.smaller {
font-size: 10px;
color: #5b5b5b;
}
.smallest {
font-size: 10px;
color: #5b5b5b;
}
/* Margin */
.remove-top {
margin-top: 0;
padding-top: 0;
}
.remove-bottom {
margin-bottom: 0;
padding-bottom: 0;
}
.nopad {
padding: 0 0 0 0 !important;
}
.equalheight {
line-height: 110%;
}
/* Tighten kerning (used primarily for headings) */
.tight {
letter-spacing: -1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment