_site-builder.scss 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* !Site Builder styles */
  2. .entry .entry-content {
  3. // Site header
  4. .site-builder__header {
  5. color: $color__text-light;
  6. display: flex;
  7. flex-direction: column;
  8. max-width: 100%;
  9. text-align: center;
  10. }
  11. // Site title
  12. .site-builder__title {
  13. color: $color__text-main;
  14. font-family: $font__heading;
  15. font-weight: 700;
  16. font-size: $font__size-md;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. letter-spacing: 0;
  20. line-height: $font__line-height-heading;
  21. margin: 0;
  22. order: 2;
  23. a {
  24. color: $color__text-main;
  25. text-decoration: none;
  26. &:link,
  27. &:visited {
  28. color: $color__text-main;
  29. }
  30. &:hover {
  31. color: $color__text-hover;
  32. }
  33. }
  34. @include media(tablet) {}
  35. &:not(:empty) + .site-description:not(:empty):before {
  36. margin: 0 0.2em;
  37. }
  38. }
  39. // Site description
  40. .site-builder__description {
  41. color: $color__text-main;
  42. font-size: $font__size-xs;
  43. font-weight: 300;
  44. margin: 0 0 calc(0.5 * #{$size__spacing-unit});
  45. order: 1;
  46. }
  47. }