_content.scss 334 B

1234567891011121314151617181920212223
  1. #content {
  2. line-height: 15pt;
  3. font-size: 11pt;
  4. p {
  5. margin-top: 10px;
  6. margin-bottom: 10px;
  7. }
  8. ul, ol {
  9. list-style: square outside;
  10. padding-left: $pad;
  11. }
  12. a, a:visited, a:active {
  13. color: lighten($cMainText, 10%);
  14. text-decoration: none;
  15. }
  16. a:hover {
  17. color: lighten($cMainText, 30%);
  18. }
  19. }