_reader-view.scss 357 B

12345678910111213141516171819202122
  1. @use "variables";
  2. /*=== READER VIEW */
  3. /*================*/
  4. #stream.reader {
  5. .flux {
  6. background: variables.$grey-light;
  7. color: variables.$main-font-color;
  8. border: none;
  9. .content {
  10. background-color: variables.$white;
  11. border: none;
  12. .author {
  13. margin: 0 0 10px;
  14. color: variables.$grey-medium-dark;
  15. font-size: 90%;
  16. }
  17. }
  18. }
  19. }