1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* !Site Builder styles */
- .entry .entry-content {
- // Site header
- .site-builder__header {
- color: $color__text-light;
- line-height: 1.25;
- max-width: 100%;
- position: relative;
- text-align: center;
- }
- // Site title
- .site-builder__title {
- color: $color__text-main;
- display: inline;
- font-family: $font__heading;
- font-size: $font__size-base;
- font-weight: 700;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- line-height: $font__line-height-heading;
- margin: auto;
- a {
- color: $color__text-main;
- text-decoration: none;
- &:link,
- &:visited {
- color: $color__text-main;
- }
- &:hover {
- color: $color__text-hover;
- }
- }
- }
- // Site description
- .site-builder__description {
- color: $color__text-main;
- display: block;
- font-size: $font__size-xs;
- font-weight: normal;
- margin: 8px 0 0;
- }
- }
|