0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/less/scaffolding.less

30 lines
554 B
Plaintext
Raw Normal View History

// Scaffolding
// Basic and global styles for generating a grid system, structural layout, and page templates
// -------------------------------------------------------------------------------------------
2011-05-03 18:09:25 -07:00
2011-08-16 22:58:01 -07:00
// STRUCTURAL LAYOUT
// -----------------
2011-05-03 18:09:25 -07:00
body {
margin: 0;
font-family: @baseFontFamily;
font-size: @baseFontSize;
line-height: @baseLineHeight;
2012-01-30 09:41:31 -08:00
color: @textColor;
background-color: @white;
2011-05-03 18:09:25 -07:00
}
// LINKS
// -----
2011-05-03 18:09:25 -07:00
a {
color: @linkColor;
2011-05-03 18:09:25 -07:00
text-decoration: none;
}
a:hover {
color: @linkColorHover;
text-decoration: underline;
2011-05-03 18:09:25 -07:00
}