mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 03:08:41 +00:00
42 lines
619 B
SCSS
42 lines
619 B
SCSS
@import "_mixins", "_vars";
|
|
|
|
article {
|
|
background: $article-background;
|
|
padding: $article-padding;
|
|
margin: 0;
|
|
|
|
p {
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
ol, ul {
|
|
margin-left: 30px;
|
|
}
|
|
|
|
ul {
|
|
list-style: disc;
|
|
}
|
|
|
|
blockquote {
|
|
margin: 10px 0 10px 0;
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border: 1px solid #999;
|
|
|
|
th, td {
|
|
padding: 5px;
|
|
border: 1px solid #999;
|
|
}
|
|
|
|
tr:nth-child(2n) {
|
|
background: #eee;
|
|
}
|
|
}
|
|
}
|