Skip to content

Instantly share code, notes, and snippets.

@ivanteoh
Created July 5, 2020 06:29
Show Gist options
  • Save ivanteoh/a3315d75d9829a5a39f35766203130cd to your computer and use it in GitHub Desktop.
Save ivanteoh/a3315d75d9829a5a39f35766203130cd to your computer and use it in GitHub Desktop.
WordPress Theme Development 14 - Typography Stylesheet
/* *** Typography *** */
/* Begin Structure */
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
}
body {
text-align: center;
}
#main {
text-align:left
}
/* End Structure */
/* Begin Header */
div#header a, div#footer a {
text-decoration: none;
}
/* End Header */
/* Begin NavMenu */
#navmenu
{
font-size: 14px;
font-weight: bold;
}
/* End NavMenu */
/* Begin Entry */
body, input, textarea {
font: 15px Georgia,serif;
line-height: 22px;
}
pre, code {
font: 14px Monaco, monospace;
line-height: 22px;
}
div.entry-title {
margin: 1em 0 0.5em;
}
div.entry-content ul li {
list-style:circle;
}
div.entry-meta {
font-size: 0.75em;
}
/* End Entry */
/* Begin Comment Form */
div#formcontainer .note {
font-size: 0.75em;
line-height: 15px;
}
/* End Comment Form */
/* Begin sidebar */
#sidebar li {
font-weight: bold;
}
#sidebar ul ul li {
font-weight: normal;
}
/* End sidebar */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment