You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 regels
760 B

  1. @use '../../_global/styles/mixins' as *;
  2. @use '../../_global/styles/vars' as *;
  3. .reading-time {
  4. display: block;
  5. font-size: 0;
  6. font-weight: 700;
  7. font-family: "Korb", sans-serif;
  8. text-transform: uppercase;
  9. color: var(--color-text);
  10. transition: color 0.3s ease;
  11. z-index: 2;
  12. width: 100%;
  13. span {
  14. padding-left: 4px;
  15. font-size: var(--font-size-xs);
  16. line-height: 1.4;
  17. display: inline-block;
  18. }
  19. .value {
  20. background-color: var(--color-button-primary-background);
  21. color: var(--color-button-primary-text);
  22. padding: 0 6px;
  23. transition: background-color 0.3s ease;
  24. }
  25. }
  26. a:hover .reading-time {
  27. color: var(--color-decoration);
  28. }
  29. .teaser .reading-time:last-child {
  30. position: absolute;
  31. bottom: 0;
  32. right: 0;
  33. }