comparison static/bootstrap/less/close.less @ 61:130eccd396d8

Now using Boostrap with LESS.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 06 Feb 2013 08:22:31 -0800
parents
children a5a3d454eac9
comparison
equal deleted inserted replaced
60:8250c977bc50 61:130eccd396d8
1 //
2 // Close icons
3 // --------------------------------------------------
4
5
6 .close {
7 float: right;
8 font-size: 20px;
9 font-weight: bold;
10 line-height: @baseLineHeight;
11 color: @black;
12 text-shadow: 0 1px 0 rgba(255,255,255,1);
13 .opacity(20);
14 &:hover {
15 color: @black;
16 text-decoration: none;
17 cursor: pointer;
18 .opacity(40);
19 }
20 }
21
22 // Additional properties for button version
23 // iOS requires the button element instead of an anchor tag.
24 // If you want the anchor version, it requires `href="#"`.
25 button.close {
26 padding: 0;
27 cursor: pointer;
28 background: transparent;
29 border: 0;
30 -webkit-appearance: none;
31 }