BookStack/resources/assets/sass/_text.scss

356 lines
4.9 KiB
SCSS
Raw Normal View History

/**
* Fonts
*/
body, button, input, select, label, textarea {
font-family: $text;
}
.Codemirror, pre, #markdown-editor-input, .editor-toolbar, .code-base {
font-family: $mono;
}
2015-07-12 19:01:42 +00:00
/*
2015-07-15 21:55:49 +00:00
* Header Styles
*/
2015-07-12 19:01:42 +00:00
h1 {
font-size: 3.425em;
2015-07-12 19:01:42 +00:00
line-height: 1.22222222em;
margin-top: 0.48888889em;
margin-bottom: 0.48888889em;
2015-07-12 19:01:42 +00:00
}
h2 {
2015-07-13 20:52:56 +00:00
font-size: 2.8275em;
2015-07-12 19:01:42 +00:00
line-height: 1.294117647em;
margin-top: 0.8627451em;
margin-bottom: 0.43137255em;
}
h3 {
font-size: 2.333em;
line-height: 1.221428572em;
2015-07-12 19:01:42 +00:00
margin-top: 0.78571429em;
margin-bottom: 0.43137255em;
}
h4 {
font-size: 1.666em;
2015-07-12 19:01:42 +00:00
line-height: 1.375em;
2015-07-15 21:55:49 +00:00
margin-top: 0.78571429em;
margin-bottom: 0.43137255em;
2015-07-12 19:01:42 +00:00
}
h1, h2, h3, h4, h5, h6 {
2015-08-30 16:53:30 +00:00
font-weight: 400;
2015-07-16 18:15:22 +00:00
position: relative;
display: block;
color: #222;
2015-07-12 19:01:42 +00:00
.subheader {
font-size: 0.5em;
line-height: 1em;
color: lighten($text-dark, 32%);
2015-07-12 19:01:42 +00:00
}
}
h5 {
font-size: 1.4em;
}
h5, h6 {
font-weight: 500;
line-height: 1.2em;
margin-top: 0.78571429em;
margin-bottom: 0.66em;
}
2015-07-12 19:01:42 +00:00
@include smaller-than($s) {
h1 {
font-size: 2.8275em;
}
h2 {
font-size: 2.333em;
}
h3 {
font-size: 1.666em;
}
h4 {
font-size: 1.333em;
}
h5 {
font-size: 1.161616em;
}
}
.list-heading {
font-size: 2rem;
}
h2.list-heading {
font-size: 1.333rem;
}
2015-07-12 19:01:42 +00:00
/*
2015-07-15 21:55:49 +00:00
* Link styling
*/
a, .link {
2015-07-12 19:01:42 +00:00
color: $primary;
cursor: pointer;
text-decoration: none;
transition: color ease-in-out 80ms;
line-height: 1.6;
2015-07-12 19:01:42 +00:00
&:hover {
text-decoration: underline;
color: darken($primary, 20%);
}
&.icon {
display: inline-block;
}
svg {
position: relative;
display: inline-block;
}
2015-07-12 19:01:42 +00:00
}
.blended-links a {
color: inherit;
svg {
fill: currentColor;
}
}
2015-07-12 19:01:42 +00:00
/*
2015-07-15 21:55:49 +00:00
* Other HTML Text Elements
*/
2015-07-12 19:01:42 +00:00
p, ul, ol, pre, table, blockquote {
margin-top: 0.3em;
margin-bottom: 1.375em;
}
hr {
border: 0;
height: 1px;
background: #EAEAEA;
2015-07-12 19:01:42 +00:00
margin-bottom: $-l;
&.faded {
background-image: linear-gradient(to right, #FFF, #e3e0e0 20%, #e3e0e0 80%, #FFF);
}
2015-08-15 23:18:22 +00:00
&.margin-top, &.even {
2015-07-12 19:01:42 +00:00
margin-top: $-l;
}
}
strong, b, .bold, .strong {
font-weight: bold;
> strong, > b, > .bold, > .strong {
font-weight: bolder;
}
}
em, i, .italic {
font-style: italic;
}
small, p.small, span.small, .text-small {
font-size: 0.75rem;
color: lighten($text-dark, 10%);
2015-07-12 19:01:42 +00:00
}
sup, .superscript {
vertical-align: super;
font-size: 0.8em;
}
sub, .subscript {
vertical-align: sub;
font-size: 0.8em;
}
2015-07-12 19:01:42 +00:00
pre {
2017-05-28 12:16:21 +00:00
font-size: 12px;
background-color: #f5f5f5;
border: 1px solid #DDD;
padding-left: 31px;
position: relative;
padding-top: 3px;
padding-bottom: 3px;
&:after {
content: '';
display: block;
position: absolute;
top: 0;
width: 29px;
left: 0;
background-color: #f5f5f5;
height: 100%;
border-right: 1px solid #DDD;
}
2015-07-12 19:01:42 +00:00
}
@media print {
pre {
padding-left: 12px;
}
pre:after {
display: none;
}
}
2017-05-28 12:16:21 +00:00
2015-07-12 19:01:42 +00:00
blockquote {
display: block;
position: relative;
border-left: 4px solid $primary;
background-color: #F8F8F8;
padding: $-s $-m $-s $-xl;
&:before {
content: "\201C";
font-size: 2em;
font-weight: bold;
position: absolute;
top: $-s;
left: $-s;
color: lighten($text-dark, 20%);
}
}
.code-base {
background-color: #F8F8F8;
font-size: 0.80em;
2015-07-12 19:01:42 +00:00
border: 1px solid #DDD;
border-radius: 3px;
}
code {
@extend .code-base;
display: inline;
padding: 1px 3px;
2015-07-12 19:01:42 +00:00
white-space:pre;
line-height: 1.2em;
margin-bottom: 1.2em;
}
span.code {
@extend .code-base;
padding: 1px $-xs;
}
2016-03-25 14:41:15 +00:00
pre code {
background-color: transparent;
border: 0;
font-size: 1em;
display: block;
line-height: 1.6;
2016-03-25 14:41:15 +00:00
}
2015-08-31 10:43:28 +00:00
span.highlight {
//background-color: rgba($primary, 0.2);
font-weight: bold;
padding: 2px 4px;
}
2015-07-16 18:53:24 +00:00
/*
* Lists
*/
ul, ol {
overflow: hidden;
p {
margin: 0;
}
}
2015-07-16 18:53:24 +00:00
ul {
padding-left: $-m * 1.3;
padding-right: $-m * 1.3;
list-style: disc;
ul {
list-style: circle;
margin-top: 0;
margin-bottom: 0;
}
label {
margin: 0;
}
2015-07-16 18:53:24 +00:00
}
ol {
list-style: decimal;
padding-left: $-m * 2;
padding-right: $-m * 2;
}
li.checkbox-item, li.task-list-item {
list-style: none;
margin-left: - ($-m * 1.3);
input[type="checkbox"] {
margin-right: $-xs;
}
}
2015-07-12 19:01:42 +00:00
/*
2015-07-15 21:55:49 +00:00
* Generic text styling classes
*/
2015-07-12 19:01:42 +00:00
.underlined {
text-decoration: underline;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
2015-07-15 21:55:49 +00:00
2016-02-17 22:11:48 +00:00
.text-bigger {
font-size: 1.1em;
}
2016-02-17 22:11:48 +00:00
.text-large {
font-size: 1.6666em;
}
.no-color {
color: inherit;
}
.break-text {
word-wrap: break-word;
overflow-wrap: break-word;
}
2015-07-15 21:55:49 +00:00
/**
* Grouping
*/
.header-group {
margin: $-m 0;
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
2015-07-20 21:05:26 +00:00
}
2015-10-07 22:17:48 +00:00
span.sep {
color: #BBB;
padding: 0 $-xs;
}
2015-07-20 21:05:26 +00:00
.list > * {
display: block;
2015-08-15 23:18:22 +00:00
}
/**
* Icons
*/
i {
padding-right: $-xs;
2015-10-07 22:17:48 +00:00
}
2018-02-17 13:30:52 +00:00
.svg-icon {
width: 1em;
height: 1em;
2018-02-17 13:30:52 +00:00
display: inline-block;
position: relative;
bottom: -0.105em;
margin-right: $-xs;
}