custom-classes.less 676 B

1234567891011121314151617181920212223242526
  1. .el-article-content {
  2. font: 1.2em/1.6em @font-family-serif;
  3. max-width: 50em;
  4. text-align: justify;
  5. blockquote {
  6. border-left: 0; // override bootstrap
  7. font-family: @font-family-sans-serif;
  8. font-size: inherit;
  9. font-weight: 300;
  10. margin-left: 2em;
  11. quotes: "\201C""\201D""\2018""\2019";
  12. &:before {
  13. color: @gray;
  14. content: open-quote;
  15. font-size: 4em;
  16. line-height: 0.1em;
  17. margin-right: 0.25em;
  18. vertical-align: -0.4em;
  19. }
  20. }
  21. img {
  22. &:extend(.img-responsive);
  23. border: 2px solid #EEE;
  24. padding: 5px;
  25. }
  26. }