_meta.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .entry-meta,
  2. .entry-footer {
  3. color: var(--entry-meta--color);
  4. clear: both;
  5. float: none;
  6. font-size: var(--entry-meta--font-size);
  7. display: block;
  8. > span {
  9. display: inline-block;
  10. margin-right: var(--global--spacing-unit);
  11. & > *,
  12. span .fn {
  13. display: inline-block;
  14. vertical-align: middle;
  15. }
  16. &:last-child {
  17. margin-right: 0;
  18. }
  19. .published + .updated {
  20. display: none; // Hide updated date?
  21. }
  22. }
  23. a {
  24. border-bottom: none;
  25. color: var(--entry-meta--color-link);
  26. &:hover,
  27. &:focus {
  28. color: var(--entry-meta--color-hover);
  29. }
  30. &:active {
  31. color: var(--entry-meta--color-link);
  32. }
  33. }
  34. .svg-icon {
  35. fill: currentColor;
  36. position: relative;
  37. display: inline-block;
  38. vertical-align: middle;
  39. margin-right: calc(0.25 * var(--global--spacing-unit));
  40. }
  41. }
  42. // Extra specificity to override rules in _vertical-margins.scss
  43. .site-main > article > .entry-footer {
  44. margin-top: calc( var(--global--spacing-vertical) * 3 );
  45. padding-top: var(--global--spacing-unit);
  46. border-top: var(--separator--height) solid var(--separator--border-color);
  47. }