forked from Deuxfleurs/guide.deuxfleurs.fr
46 lines
708 B
SCSS
46 lines
708 B
SCSS
|
.content {
|
||
|
padding: 0 40px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow-x: auto;
|
||
|
}
|
||
|
|
||
|
.content pre {
|
||
|
overflow-x: auto;
|
||
|
padding: 1.25em 1.5em;
|
||
|
white-space: pre;
|
||
|
word-wrap: normal;
|
||
|
background-color: white;
|
||
|
color: #4a4a4a;
|
||
|
font-size: .875em;
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
|
||
|
.content code {
|
||
|
background-color: white;
|
||
|
color: #4a4a4a;
|
||
|
font-size: .875em;
|
||
|
font-weight: normal;
|
||
|
padding: 0.25em 0.5em;
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
|
||
|
.content pre code {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.content a {
|
||
|
color: var(--primary-link-color);
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.content blockquote {
|
||
|
border-left: #e2dede 8px solid;
|
||
|
margin: 0;
|
||
|
background-color: #f2f1f0;
|
||
|
padding: 0 20px;
|
||
|
}
|