styles.scss 807 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* You can add global styles to this file, and also import other style files */
  2. body {
  3. font-family: 'Roboto', sans-serif !important;
  4. display: flex;
  5. justify-content: center;
  6. color: #000000b8;
  7. a {
  8. text-decoration: none;
  9. color: #000c;
  10. font-style: italic;
  11. background: #0000000d;
  12. border-radius: 5px;
  13. padding: 2px 6px;
  14. box-sizing: border-box;
  15. font-size: 14px;
  16. &:hover {
  17. background: #0000001c;
  18. }
  19. }
  20. blockquote {
  21. font-size: 15px;
  22. font-style: italic;
  23. border-left: 2px solid #00000042;
  24. margin: 0px;
  25. padding: 0px 30px;
  26. text-align: justify;
  27. }
  28. app-root {
  29. width: 550px;
  30. max-width: 550px;
  31. margin: 20px 0px 40px;
  32. }
  33. }