_site-builder.scss 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* !Site Builder styles */
  2. .entry .entry-content {
  3. // Site header
  4. .site-builder__header {
  5. color: $color__text-light;
  6. line-height: 1.25;
  7. max-width: 100%;
  8. position: relative;
  9. text-align: center;
  10. }
  11. // Site title
  12. .site-builder__title {
  13. color: $color__text-main;
  14. display: inline;
  15. font-family: $font__heading;
  16. font-size: $font__size-base;
  17. font-weight: 700;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. line-height: $font__line-height-heading;
  21. margin: auto;
  22. a {
  23. color: $color__text-main;
  24. text-decoration: none;
  25. &:link,
  26. &:visited {
  27. color: $color__text-main;
  28. }
  29. &:hover {
  30. color: $color__text-hover;
  31. }
  32. }
  33. }
  34. // Site description
  35. .site-builder__description {
  36. color: $color__text-main;
  37. display: block;
  38. font-size: $font__size-xs;
  39. font-weight: normal;
  40. margin: 8px 0 0;
  41. }
  42. }