1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // Typography
- // --------------------------------------------------
- // In-site link
- .site-link {
- &, &:link, &:visited {
- color: @site-link-color;
- }
- &:hover, &:focus {
- color: @site-link-hover-color;
- }
- &:active {
- color: @site-link-active-color;
- }
- }
- // Item name
- .item-name {
- color: @text-color;
- font-weight: bold;
- }
- a.item-name {
- &:link, &:hover, &:visited, &:active {
- color: @text-color;
- font-weight: bold;
- }
- &:hover {
- text-decoration: underline;
- }
- }
- // Margins
- .right-margin {
- margin-right: @line-height-computed;
- }
- .left-margin {
- margin-left: @line-height-computed;
- }
|