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

124 lines
1.8 KiB
SCSS
Raw Normal View History

/**
* Headers
*
*/
body {
text-rendering: optimizeLegibility
}
2015-03-06 23:02:34 -05:00
.page-title {
2015-02-16 13:14:07 -05:00
margin-top: 0px;
line-height: 1.3;
font-size: 1.25em;
font-weight: 600;
margin: 12px 7px 12px 7px;
}
h1, h2, h3, h4, h5, h6 {
color: $gl-header-color;
font-weight: 500;
}
/** CODE **/
pre {
font-family: $monospace_font;
&.dark {
background: #333;
color: $background-color;
}
&.plain-readme {
background: none;
border: none;
padding: 0;
margin: 0;
font-size: 14px;
}
}
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
code {
&.key-fingerprint {
background: $body-bg;
color: $text-color;
}
}
a > code {
color: $link-color;
}
2013-01-10 11:09:12 -05:00
/**
* Wiki typography
*
*/
.wiki {
2013-03-04 14:34:26 -05:00
@include md-typography;
word-wrap: break-word;
padding: 7px;
/* Link to current header. */
h1, h2, h3, h4, h5, h6 {
position: relative;
a.anchor {
2015-05-06 18:38:43 -04:00
// Setting `display: none` would prevent the anchor being scrolled to, so
// instead we set the height to 0 and it gets updated on hover.
height: 0;
}
&:hover > a.anchor {
$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,ol {
padding: 0;
margin: 6px 0 6px 18px !important;
}
ol {
color: #5c5d5e;
}
2013-01-10 11:09:12 -05:00
}
2013-03-04 15:00:51 -05:00
.md-area {
@include md-typography;
}
2013-03-04 15:00:51 -05:00
.md {
@include md-typography;
}
/**
* Textareas intended for GFM
*
*/
textarea.js-gfm-input {
font-family: $monospace_font;
}
2014-11-05 15:45:18 -05:00
.md-preview {
font-family: $monospace_font;
}
2014-11-05 15:45:18 -05:00
.strikethrough {
text-decoration: line-through;
}