theme.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @charset "UTF-8";
  2. /**
  3. * Breakpoints & Media Queries
  4. */
  5. /**
  6. * Converts a hex value into the rgb equivalent.
  7. *
  8. * @param {string} hex - the hexadecimal value to convert
  9. * @return {string} comma separated rgb values
  10. */
  11. /**
  12. * Breakpoint mixins
  13. */
  14. /**
  15. * Long content fade mixin
  16. *
  17. * Creates a fading overlay to signify that the content is longer
  18. * than the space allows.
  19. */
  20. /**
  21. * Focus styles.
  22. */
  23. /**
  24. * Applies editor left position to the selector passed as argument
  25. */
  26. /**
  27. * Styles that are reused verbatim in a few places
  28. */
  29. /**
  30. * Allows users to opt-out of animations via OS-level preferences.
  31. */
  32. /**
  33. * Reset default styles for JavaScript UI based pages.
  34. * This is a WP-admin agnostic reset
  35. */
  36. /**
  37. * Reset the WP Admin page styles for Gutenberg-like pages.
  38. */
  39. .post-meta {
  40. align-items: center;
  41. justify-content: center;
  42. }
  43. .post-meta.wp-block-group {
  44. gap: 0;
  45. }
  46. .post-meta > *:not(:first-child):before {
  47. color: var(--wp--custom--color--foreground);
  48. content: "·";
  49. margin-left: var(--wp--custom--gap--baseline);
  50. margin-right: var(--wp--custom--gap--baseline);
  51. }
  52. @media (max-width: 599px) {
  53. .post-meta {
  54. padding-top: 0 !important;
  55. margin-bottom: -20px;
  56. }
  57. }
  58. /*# sourceMappingURL=theme.css.map */