108 lines
1.2 KiB
SCSS
108 lines
1.2 KiB
SCSS
/**
|
|
* Headers
|
|
*
|
|
*/
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 500;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
h1.page-title {
|
|
@include page-title;
|
|
font-size: 28px;
|
|
}
|
|
|
|
h2.page-title {
|
|
@include page-title;
|
|
font-size: 24px;
|
|
}
|
|
|
|
h3.page-title {
|
|
@include page-title;
|
|
}
|
|
|
|
h6 {
|
|
color: #888;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/** CODE **/
|
|
pre {
|
|
font-family: $monospace_font;
|
|
|
|
&.dark {
|
|
background: #333;
|
|
color: #f5f5f5;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Links
|
|
*
|
|
*/
|
|
a {
|
|
outline: none;
|
|
color: $link_color;
|
|
&:hover {
|
|
text-decoration: none;
|
|
color: $primary_color;
|
|
}
|
|
|
|
&:focus {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&.dark {
|
|
color: $style_color;
|
|
}
|
|
|
|
&.lined {
|
|
text-decoration: underline;
|
|
&:hover { text-decoration: underline; }
|
|
}
|
|
|
|
&.gray {
|
|
color: gray;
|
|
}
|
|
|
|
&.supp_diff_link {
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
background: #f1f1f1;
|
|
width: 100%;
|
|
float: left;
|
|
}
|
|
|
|
&.neib {
|
|
margin-right: 15px;
|
|
}
|
|
}
|
|
|
|
a:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.monospace {
|
|
font-family: $monospace_font;
|
|
}
|
|
|
|
/**
|
|
* Wiki typography
|
|
*
|
|
*/
|
|
.wiki {
|
|
@include md-typography;
|
|
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
.white .highlight pre {
|
|
background: #f5f5f5;
|
|
}
|
|
ul {
|
|
margin: 0 0 9px 25px !important;
|
|
}
|
|
}
|
|
|
|
.md {
|
|
@include md-typography;
|
|
}
|