]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - themes/default/less/scaffolding.less
Release 6.5.3
[Github/sugarcrm.git] / themes / default / less / scaffolding.less
1 // Scaffolding
2 // Basic and global styles for generating a grid system, structural layout, and page templates
3 // -------------------------------------------------------------------------------------------
4
5
6 // STRUCTURAL LAYOUT
7 // -----------------
8
9 body {
10   margin: 0;
11   font-family: @baseFontFamily;
12   font-size: @baseFontSize;
13   line-height: @baseLineHeight;
14   color: @textColor;
15   background-color: @white;
16 }
17
18
19 // LINKS
20 // -----
21
22 a {
23   color: @linkColor;
24   text-decoration: none;
25 }
26 a:hover {
27   color: @linkColorHover;
28   text-decoration: underline;
29 }