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

139 lines
1.8 KiB
SCSS
Raw Normal View History

/**
* Headers
*
*/
2013-07-13 07:13:36 +00: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 07:13:36 +00:00
@include page-title;
font-size: 22px;
}
2015-02-16 18:14:07 +00:00
h4.page-title {
margin-top: 0px;
}
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: underline;
color: $link_hover_color;
}
2013-05-23 08:47:57 +00:00
&:focus {
text-decoration: underline;
}
&.darken {
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-23 04:24:09 +00:00
.monospace {
font-family: $monospace_font;
2012-11-23 04:24:09 +00:00
}
2013-01-10 16:09:12 +00:00
/**
* Wiki typography
*
*/
.wiki {
2013-03-04 19:34:26 +00:00
@include md-typography;
word-wrap: break-word;
/* 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;
background-image: image-url("icon-link.png");
background-size: contain;
background-repeat: no-repeat;
}
}
ul {
padding: 0;
margin: 0 0 9px 25px !important;
}
2013-01-10 16:09:12 +00:00
}
2013-03-04 20:00:51 +00:00
.md {
@include md-typography;
}
/**
* Textareas intended for GFM
*
*/
textarea.js-gfm-input {
font-family: $monospace_font;
}
2014-11-05 20:45:18 +00:00
.strikethrough {
text-decoration: line-through;
2015-02-16 18:14:07 +00:00
}