mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
29 lines
554 B
Text
29 lines
554 B
Text
// 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;
|
|
}
|