| 12345678910111213141516171819202122232425262728 |
- 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;
- }
- a:hover,
- a:focus {
- color: $linkColorHover;
- }
|