1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-25 12:59:05 +02:00
Files
bootstrap/lib/scaffolding.less
2012-01-26 14:50:55 -08:00

31 lines
560 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: @gray;
background-color: @white;
}
// LINKS
// -----
a {
color: @linkColor;
text-decoration: none;
&:hover {
color: @linkColorHover;
text-decoration: underline;
}
}