close.less 308 B

123456789101112131415161718
  1. // CLOSE ICONS
  2. // -----------
  3. .close {
  4. float: right;
  5. font-size: 20px;
  6. font-weight: bold;
  7. line-height: @baseLineHeight;
  8. color: @black;
  9. text-shadow: 0 1px 0 rgba(255,255,255,1);
  10. .opacity(20);
  11. &:hover {
  12. color: @black;
  13. text-decoration: none;
  14. .opacity(40);
  15. cursor: pointer;
  16. }
  17. }