mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
30 lines
554 B
Plaintext
30 lines
554 B
Plaintext
|
// Scaffolding
|
||
|
// Basic and global styles for generating a grid system, structural layout, and page templates
|
||
|
// -------------------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
// STRUCTURAL LAYOUT
|
||
|
// -----------------
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
font-family: @baseFontFamily;
|
||
|
font-size: @baseFontSize;
|
||
|
line-height: @baseLineHeight;
|
||
|
color: @textColor;
|
||
|
background-color: @white;
|
||
|
}
|
||
|
|
||
|
|
||
|
// LINKS
|
||
|
// -----
|
||
|
|
||
|
a {
|
||
|
color: @linkColor;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: @linkColorHover;
|
||
|
text-decoration: underline;
|
||
|
}
|