+/* Rules for rich text */
+
+.richtext {
+ h1, h2 {
+ padding-bottom: $lineheight/2;
+ border-bottom: 1px dashed #cccccc;
+ margin-bottom: $lineheight/2;
+ }
+
+ h1 {
+ font-size: 24px;
+ }
+
+ h2 {
+ font-size: 18px;
+ }
+
+ h3 {
+ font-size: $typeheight;
+ }
+
+ code {
+ font-size: 13px;
+ background: #e8e8e8;
+ padding: 2px 3px;
+ }
+
+ pre {
+ font-size: 13px;
+ background: #e8e8e8;
+ padding: 2px 3px;
+
+ code {
+ padding: 0;
+ }
+ }
+
+ img {
+ padding: $lineheight;
+ background-color: $offwhite;
+ display: block;
+ max-width: 100%;
+ margin: auto;
+ }
+
+ blockquote {
+ border-left: $lineheight solid $offwhite;
+ padding-left: $lineheight;
+ margin: 0;
+ color: #7E7E7E;
+ }
+
+ ul, ol {
+ font-style: italic;
+ padding-left: $lineheight;
+ margin-bottom: $lineheight;
+ margin-left: $lineheight;
+ }
+
+ ul li {
+ list-style: disc;
+ }
+
+ ol li {
+ list-style: decimal;
+ }
+}
+
+.diary_post .richtext {
+ margin-top: $lineheight;
+ }
+
+.comments .richtext {
+ margin-left: 70px;
+ margin-top: 0;
+}
+