/** * editor-style.css file for Theme * * @package Canuck WordPress Theme * @copyright Copyright (C) 2017 Kevin Archibald * @license http://www.gnu.org/licenses/gpl-2.0.html * @author Kevin Archibald */ /* =============================================== Global Styles */ body { width: 100%; color: #474747; /* This is the basic font color */ font-size: 100%; /* all theme fonts are scaled from this size - 100% is 16px */ font-weight: normal; line-height: 1.3125em; word-wrap: break-word; margin:0; padding:0; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; } .clearfix {clear: both;} .clearleft {clear: left;} .clearright {clear: right;} /* ===============================-- Headers -------------- */ h1,h2,h3,h4,h5,h6 { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; line-height: 1.5em; padding: 0; margin:0; font-weight: normal; } h1 {font-size: 2.00em;} h2 {font-size: 1.75em;} h3 {font-size: 1.50em;} h4 {font-size: 1.25em;} h5 {font-size: 1.00em;} h6 {font-size: 0.8571em;} /* ---------------- basic paragraph ------------- */ p { font-size: 1.00em; line-height: 1.3125em; margin: 0; padding: 0.5em 0 0 0; } p:first-child { padding: 0; margin: 0; } /* ---------------- Misc HTML tags ---------------- */ address { font-size: 1.00em; font-style: italic; } blockquote, blockquote p { font-style: italic; margin-left: 1em; font-weight: 600; line-height: 1.5em; vertical-align: bottom; } blockquote p:before { font-family: FontAwesome; content:'\f10d'; font-size: 0.75em; line-height: 1.5em; padding: 0 0.5em 0 0; color: #c9c9c9; vertical-align: top; } pre { border-radius: 10px; border: solid 5px gray; font-size: 1em; color: blue; margin: 1em 0 0 0; padding: 1em; background: #F7F4F4; overflow-x: auto; } label {font-size: 1em;} code { font-size: 1em; background: rgba(0,0,0,0.1); } q{font-style: italic;} q:before, q:after { content:'"'; } /* ---------------------------------- list defaults --------------- */ /* ------------- unordered ------------------- */ ul{ padding-left: 1.0em; /* This will vary because of nesting */ line-height: 1.5em; } ul li { list-style: disc; font-size: 1em; } ul li li { list-style: circle; font-size: 1.0em; } ul li li li { list-style: square; font-size: 1.0em; } /* --- special lists --- */ ul.recent-posts li { list-style: none; } /* ------------ ordered --------------------------- */ ol{padding-left: 1.25em;} ol li { list-style: decimal; font-size: 1em; } ol li li { list-style: lower-alpha; font-size: 1em; } ol li li li { list-style: lower-roman; font-size: 1em; } /* -------------- ordered/unordered combo lists ------ */ ol ul li {list-style: disc;} ol ul ul li {list-style: circle;} ul ol li {list-style: decimal;} ul ol ul li {list-style: circle } ul ul ol li {list-style: decimal } /* --------------definition list ------------------- */ dt { margin: 0; padding: 0; font-size: 1em; font-weight: bold; } dl { margin: 0; padding: 0; font-size: 1.0em; } dd { font-size: 1em; margin-left: 1em; } /* ----- links default ------------------------------- */ a { color: #000000; /*828282*/ } a:link, a:active, a:visited, a:hover { text-decoration: none; } a:hover { font-weight: normal; color: #c9c9c9; } /* ------------------table styles --------------------- */ table { border-collapse: collapse; border-spacing: 0; font-size: 1em; } thead { font-weight: bold; text-align: center; } th { border: 1px solid #7F7F7F; padding: 0.625em; background-color: #E3E3E3; background-color: rgba(165,149,149,0.2); } tfoot { background-color: #E3E3E3; background-color: rgba(165,149,149,0.3); font-weight: bold; } tbody { text-align: left; } tr { padding: 0.625em; /* 10px /16px */ } td { border: 1px solid #7F7F7F; padding: 0.625em; /* 10px /16px */ text-align: left; }