2012-08-30 02:09:42 -04:00
|
|
|
/**
|
2012-08-29 14:23:43 -04:00
|
|
|
* Headers
|
2012-08-30 02:09:42 -04:00
|
|
|
*
|
2012-08-29 14:23:43 -04:00
|
|
|
*/
|
2012-11-20 13:01:25 -05:00
|
|
|
|
2012-11-20 16:05:15 -05:00
|
|
|
h1, h2, h3, h4, h5, h6 { margin: 0; }
|
2012-08-29 14:23:43 -04:00
|
|
|
h3, h4, h5, h6 { line-height: 36px; }
|
2012-11-23 11:33:43 -05:00
|
|
|
h5 { font-size: 14px; }
|
2012-11-20 16:05:15 -05:00
|
|
|
|
2012-08-30 02:09:42 -04:00
|
|
|
h3.page_title {
|
2012-11-23 11:51:38 -05:00
|
|
|
color: #456;
|
2012-11-23 11:33:43 -05:00
|
|
|
font-size: 20px;
|
2012-08-29 14:23:43 -04:00
|
|
|
font-weight: normal;
|
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
|
2012-11-21 02:14:15 -05:00
|
|
|
h6 {
|
|
|
|
color: #888;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2012-08-29 14:23:43 -04:00
|
|
|
/** CODE **/
|
|
|
|
pre {
|
|
|
|
font-family:'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
|
|
|
|
|
|
|
|
&.dark {
|
|
|
|
background: #333;
|
2012-11-23 11:51:38 -05:00
|
|
|
color: #f5f5f5;
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-30 02:09:42 -04:00
|
|
|
/**
|
2012-08-29 14:23:43 -04:00
|
|
|
* Links
|
2012-08-30 02:09:42 -04:00
|
|
|
*
|
2012-08-29 14:23:43 -04:00
|
|
|
*/
|
|
|
|
a {
|
|
|
|
outline: none;
|
|
|
|
color: $link_color;
|
|
|
|
&:hover {
|
2012-11-23 11:33:43 -05:00
|
|
|
text-decoration: none;
|
2012-08-29 14:23:43 -04:00
|
|
|
color: $blue_link;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn {
|
|
|
|
color: $style_color;
|
2012-08-30 02:09:42 -04:00
|
|
|
&:hover {
|
2012-08-29 14:23:43 -04:00
|
|
|
color: $style_color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dark {
|
|
|
|
color: $style_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.lined {
|
2012-11-23 11:33:43 -05:00
|
|
|
text-decoration: underline;
|
|
|
|
&:hover { text-decoration: underline; }
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.gray {
|
2012-11-23 11:33:43 -05:00
|
|
|
color: gray;
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.supp_diff_link {
|
2012-11-23 11:33:43 -05:00
|
|
|
text-align: center;
|
2012-11-23 11:51:38 -05:00
|
|
|
padding: 20px 0;
|
|
|
|
background: #f1f1f1;
|
2012-11-23 11:33:43 -05:00
|
|
|
width: 100%;
|
|
|
|
float: left;
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.neib {
|
2012-11-23 11:33:43 -05:00
|
|
|
margin-right: 15px;
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2012-11-22 23:24:09 -05:00
|
|
|
|
|
|
|
.monospace {
|
|
|
|
font-family: 'Menlo', 'Liberation Mono', 'Consolas', 'Courier New', 'andale mono','lucida console',monospace;
|
|
|
|
}
|