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
|
|
|
*/
|
2013-07-13 03:13:36 -04:00
|
|
|
h1.page-title {
|
|
|
|
@include page-title;
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2.page-title {
|
|
|
|
@include page-title;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
2013-07-13 01:45:48 -04:00
|
|
|
h3.page-title {
|
2013-07-13 03:13:36 -04:00
|
|
|
@include page-title;
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
|
2012-11-21 02:14:15 -05:00
|
|
|
h6 {
|
|
|
|
color: #888;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2012-08-29 14:23:43 -04:00
|
|
|
/** CODE **/
|
|
|
|
pre {
|
2012-12-01 07:49:21 -05:00
|
|
|
font-family: $monospace_font;
|
2012-08-29 14:23:43 -04:00
|
|
|
|
|
|
|
&.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-11-25 14:03:14 -05:00
|
|
|
color: $primary_color;
|
2012-08-29 14:23:43 -04:00
|
|
|
}
|
|
|
|
|
2013-05-23 04:47:57 -04:00
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2012-08-29 14:23:43 -04:00
|
|
|
&.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 {
|
2012-12-01 07:49:21 -05:00
|
|
|
font-family: $monospace_font;
|
2012-11-22 23:24:09 -05:00
|
|
|
}
|
2013-01-10 11:09:12 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wiki typography
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.wiki {
|
2013-03-04 14:34:26 -05:00
|
|
|
@include md-typography;
|
|
|
|
|
2014-02-04 02:48:33 -05:00
|
|
|
/* Link to current header. */
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
position: relative;
|
|
|
|
&:hover > :last-child {
|
|
|
|
$size: 16px;
|
|
|
|
position: absolute;
|
|
|
|
right: 100%;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -$size/2;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding-right: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
2014-03-06 04:05:00 -05:00
|
|
|
background-image: image-url("icon-link.png");
|
2014-02-04 02:48:33 -05:00
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 14:24:38 -04:00
|
|
|
ul {
|
2013-12-30 20:15:58 -05:00
|
|
|
padding: 0;
|
2013-07-29 14:24:38 -04:00
|
|
|
margin: 0 0 9px 25px !important;
|
|
|
|
}
|
2013-01-10 11:09:12 -05:00
|
|
|
}
|
2013-03-04 15:00:51 -05:00
|
|
|
|
|
|
|
.md {
|
|
|
|
@include md-typography;
|
|
|
|
}
|
2014-03-21 14:14:11 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Textareas intended for GFM
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
textarea.js-gfm-input {
|
|
|
|
font-family: $monospace_font;
|
|
|
|
}
|