mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
f30a7cc61d
We're going to build a custom version
30 lines
549 B
Plaintext
Executable File
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;
|
|
}
|