gitlab-org--gitlab-foss/app/assets/stylesheets/generic/typography.scss

105 lines
1.2 KiB
SCSS
Raw Normal View History

/**
* Headers
*
*/
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;
}
h3.page-title {
2013-07-13 03:13:36 -04:00
@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;
2012-11-25 14:03:14 -05:00
color: $primary_color;
}
2013-05-23 04:47:57 -04:00
&: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;
}
2012-11-22 23:24:09 -05:00
.monospace {
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;
font-size: 14px;
line-height: 1.6;
.white .highlight pre {
background: #f5f5f5;
}
ul {
padding: 0;
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;
}