/**
 * Project style sheet.
 *
 * @package    vanilla
 * @subpackage css
 * @author     Loops <evrard at h2a dot lu>
 * @version    SVN: $Id: styles.css 38 2014-08-22 15:38:29Z loops $
 */


/*** Defaults ***/

/* declare the default font and color here */
body { font: 14px/1.231 roboto, sans-serif; color: #575757; }


/** selected text **/
/* ::selection {} */
/* ::-moz-selection {} */


/** paragraphs **/
p { line-height: 1.571; margin: 30px 0; }
address { line-height: 1.571; font-style: normal; margin: 30px 0; }
blockquote { line-height: 1.571; margin: 30px 0; }


/** links **/
a { text-decoration: none; color: #0e3350; }
a:hover, a:focus { text-decoration: underline; }
a:active { text-decoration: underline; }
/* reset for block */
a.block { color: inherit; text-decoration: none !important; }
a.block:hover, a.block:focus { color: inherit; }
a.block:active { color: inherit; }
/* reset for block and vanilla */
a.vanilla { color: inherit; }
a.vanilla:hover, a.vanilla:focus { color: inherit; }
a.vanilla:active { color: inherit; }


/** titles, will be usefull to have a class **/
h1, .h1 { font-size: 50px; font-weight: normal; margin: 75px 0 60px; color: #0e3350; }
h2, .h2 { font-size: 24px; font-weight: normal; margin: 50px 0 30px; color: #0e3350; }
h3, .h3 { font-size: 20px; font-weight: normal; margin: 40px 0 30px; color: #0e3350; }
h4, .h4 { font-size: 18px; font-weight: normal; margin: 30px 0; color: #0e3350; }
h5, .h5 { font-size: 16px; font-weight: normal; margin: 30px 0; color: #0e3350; }
h6, .h6 { font-size: 14px; font-weight: normal; margin: 30px 0; color: #0e3350; }


/** lists **/
ul, ol { margin: 30px 0; padding: 0 0 0 35px; }
*:not(.vanilla) > li { margin: 15px 0; } /* exclude vanilla */
ul { list-style: none; }
ul:not(.vanilla) > li:before { content: "-\00A0"; } /* exclude vanilla */
ol { list-style-position: inside; }
ol:not(.vanilla) > li:before {} /* exclude vanilla */
/* reduce margin in that cases */
p + ul, p + ol { margin-top: -15px; }


/** tables **/
table { margin: 30px 0; }
caption {}
th, td { padding: 5px; font-size: inherit; }
th { text-align: left; }
thead > tr > th, thead > tr > td {}
tfoot > tr > th, tfoot > tr > td {}


/** miscellaneous **/
hr { margin: 30px 0; }
img { max-width: 100%; height: auto; }
iframe, object, embed, video, audio { max-width: 100%; }

