mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 10:08:20 -05:00
40 lines
406 B
SCSS
40 lines
406 B
SCSS
|
.body-page {
|
||
|
|
||
|
// Consistent vertical spacing
|
||
|
blockquote,
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
hr,
|
||
|
p,
|
||
|
pre,
|
||
|
ul,
|
||
|
ol,
|
||
|
li,
|
||
|
table {
|
||
|
margin: 0 0 20px;
|
||
|
font-size: 16px;
|
||
|
line-height: 22px;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin-bottom: 8px;
|
||
|
}
|
||
|
|
||
|
ul,
|
||
|
ol {
|
||
|
margin-left: 40px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.container {
|
||
|
@extend .clearfix;
|
||
|
width: 960px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px 10px;
|
||
|
margin-top: -60px;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|