_site-builder.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* !Site Builder styles */
  2. .entry .entry-content {
  3. // Site header
  4. .site-builder__header {
  5. padding: 1rem 0 0.75rem;
  6. text-align: center;
  7. color: $color__text-light;
  8. position: relative;
  9. max-width: 100%;
  10. @include postContentMaxWidth();
  11. @include media(tablet) {
  12. margin: 0;
  13. padding: 2rem 0 1.5rem;
  14. }
  15. @include media(tablet) {
  16. margin: 0 $size__site-margins;
  17. }
  18. }
  19. // Site title
  20. .site-builder__title {
  21. color: $color__text-main;
  22. display: block;
  23. font-family: $font__heading;
  24. font-size: $font__size-lg;
  25. font-weight: 700;
  26. -webkit-font-smoothing: antialiased;
  27. -moz-osx-font-smoothing: grayscale;
  28. letter-spacing: normal;
  29. line-height: $font__line-height-heading;
  30. margin: 0;
  31. a {
  32. color: $color__text-main;
  33. text-decoration: none;
  34. &:link,
  35. &:visited {
  36. color: $color__text-main;
  37. }
  38. &:hover {
  39. color: $color__text-hover;
  40. }
  41. }
  42. @include media(tablet) {
  43. display: block;
  44. }
  45. }
  46. // Site description
  47. .site-builder__description {
  48. color: $color__text-main;
  49. display: block;
  50. font-size: $font__size-xs;
  51. font-weight: normal;
  52. letter-spacing: normal;
  53. margin: 8px 0 0;
  54. }
  55. }