2012-08-30 08:09:42 +02:00
|
|
|
/**
|
2012-08-29 20:23:43 +02:00
|
|
|
* Headers
|
2012-08-30 08:09:42 +02:00
|
|
|
*
|
2012-08-29 20:23:43 +02:00
|
|
|
*/
|
2012-11-20 19:01:25 +01:00
|
|
|
|
2012-11-20 22:05:15 +01:00
|
|
|
h1, h2, h3, h4, h5, h6 { margin: 0; }
|
2012-08-29 20:23:43 +02:00
|
|
|
h3, h4, h5, h6 { line-height: 36px; }
|
2012-11-23 17:33:43 +01:00
|
|
|
h5 { font-size: 14px; }
|
2012-11-20 22:05:15 +01:00
|
|
|
|
2012-08-30 08:09:42 +02:00
|
|
|
h3.page_title {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #456;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-size: 20px;
|
2012-08-29 20:23:43 +02:00
|
|
|
font-weight: normal;
|
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
|
2012-11-21 08:14:15 +01:00
|
|
|
h6 {
|
|
|
|
color: #888;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2012-08-29 20:23:43 +02:00
|
|
|
/** CODE **/
|
|
|
|
pre {
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-08-29 20:23:43 +02:00
|
|
|
|
|
|
|
&.dark {
|
|
|
|
background: #333;
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #f5f5f5;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-30 08:09:42 +02:00
|
|
|
/**
|
2012-08-29 20:23:43 +02:00
|
|
|
* Links
|
2012-08-30 08:09:42 +02:00
|
|
|
*
|
2012-08-29 20:23:43 +02:00
|
|
|
*/
|
|
|
|
a {
|
|
|
|
outline: none;
|
|
|
|
color: $link_color;
|
|
|
|
&:hover {
|
2012-11-23 17:33:43 +01:00
|
|
|
text-decoration: none;
|
2012-11-25 20:03:14 +01:00
|
|
|
color: $primary_color;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.btn {
|
|
|
|
color: $style_color;
|
2012-08-30 08:09:42 +02:00
|
|
|
&:hover {
|
2012-08-29 20:23:43 +02:00
|
|
|
color: $style_color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.dark {
|
|
|
|
color: $style_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.lined {
|
2012-11-23 17:33:43 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
&:hover { text-decoration: underline; }
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.gray {
|
2012-11-23 17:33:43 +01:00
|
|
|
color: gray;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.supp_diff_link {
|
2012-11-23 17:33:43 +01:00
|
|
|
text-align: center;
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 20px 0;
|
|
|
|
background: #f1f1f1;
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 100%;
|
|
|
|
float: left;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.neib {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-right: 15px;
|
2012-08-29 20:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2012-11-23 05:24:09 +01:00
|
|
|
|
|
|
|
.monospace {
|
2012-12-01 13:49:21 +01:00
|
|
|
font-family: $monospace_font;
|
2012-11-23 05:24:09 +01:00
|
|
|
}
|
2013-01-10 17:09:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wiki typography
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.wiki {
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
|
|
code { padding: 0 4px; }
|
|
|
|
p { font-size: 13px; }
|
|
|
|
h1 { font-size: 32px; line-height: 40px; margin: 10px 0;}
|
|
|
|
h2 { font-size: 26px; line-height: 40px; margin: 10px 0;}
|
|
|
|
h3 { font-size: 22px; line-height: 40px; margin: 10px 0;}
|
|
|
|
h4 { font-size: 18px; line-height: 20px; margin: 10px 0;}
|
|
|
|
h5 { font-size: 14px; line-height: 20px; margin: 10px 0;}
|
|
|
|
h6 { font-size: 12px; line-height: 20px; margin: 10px 0;}
|
|
|
|
.white .highlight pre { background: #f5f5f5; }
|
|
|
|
ul { margin: 0 0 9px 25px !important; }
|
|
|
|
}
|