1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-07 13:06:47 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/scaffolding.less
Jeremy Ruston f30a7cc61d Added Twitter Bootstrap source
We're going to build a custom version
2012-06-24 13:14:40 +01:00

30 lines
549 B
Plaintext
Executable File

// Scaffolding
// Basic and global styles for generating a grid system, structural layout, and page templates
// -------------------------------------------------------------------------------------------
// Body reset
// ----------
body {
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 {
color: @linkColorHover;
text-decoration: underline;
}