72 lines
844 B
CSS
72 lines
844 B
CSS
.root {
|
|
border: dotted 1px #ddd;
|
|
position: relative;
|
|
margin: 9px 0 15px 0;
|
|
}
|
|
|
|
|
|
.type:after {
|
|
content: attr(data-type);
|
|
font-size: 10px;
|
|
color: #aaa;
|
|
position: absolute;
|
|
top : -7px;;
|
|
margin-left: 1em;
|
|
padding: 0 3px;
|
|
display: inline;
|
|
background-color: #fafafa;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.body {
|
|
padding: 8px;
|
|
}
|
|
|
|
.body img{
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.Paragraph {
|
|
|
|
}
|
|
|
|
.Heading1, .Heading2, .Heading3, .Heading4, .Heading5, .Heading6 {
|
|
margin: 0;
|
|
font-weight: bold
|
|
}
|
|
|
|
.Heading1 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.Heading2 {
|
|
font-size: 1.15em;
|
|
}
|
|
|
|
.Heading3 {
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.Heading4 {
|
|
font-size: 1.07em;
|
|
}
|
|
|
|
.Heading5 {
|
|
font-size: 1.05em;
|
|
}
|
|
|
|
.Heading6 {
|
|
font-size: 1.03em;
|
|
}
|
|
|
|
.blockquote {
|
|
padding-left: 5px;
|
|
border-left: solid 3px #ccc;
|
|
}
|
|
|
|
.body ul {
|
|
padding-left: 20px;
|
|
margin: 0;
|
|
}
|