12345678910111213141516171819202122232425262728293031323334353637 |
- // Layout elements that dont deserve their own file go there
- // -------------------------
- // Footer
- footer {
- padding-top: 16px;
- padding-bottom: 32px;
-
- color: darken(@bodyBackground, 30%);
-
- a, a:link, a:active, a:visited {
- color: darken(@bodyBackground, 30%);
- text-decoration: underline;
- }
-
- a:hover {
- color: darken(@bodyBackground, 50%);
- }
-
- .go-to-top {
- float: right;
-
- &, &:link, &:active, &:visited {
- text-decoration: none;
-
- i {
- .opacity(40);
- }
- }
-
- &:hover {
- i {
- .opacity(65);
- }
- }
- }
- }
|