| 123456789101112131415161718192021222324252627282930313233343536 |
- html {
- height: 100%;
- }
- body {
- height: 100%;
- margin: 0;
- font-family: $baseFontFamily;
- font-size: $baseFontSize;
- line-height: $baseLineHeight;
- color: $textColor;
- background-color: $bodyBackground;
- }
- // Links
- // -------------------------
- a {
- color: $linkColor;
- text-decoration: none;
- &:hover,
- &:focus {
- color: $linkColorHover;
- text-decoration: none;
- }
- &:focus {
- @include tab-focus();
- }
- }
- img {
- vertical-align: middle;
- }
|