]> jfr.im git - z_archive/KronOS.git/blame - public/less/close.less
Fixing filestructure again
[z_archive/KronOS.git] / public / less / close.less
CommitLineData
59c06b17
CS
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="#"`.
25button.close {
26 padding: 0;
27 cursor: pointer;
28 background: transparent;
29 border: 0;
30 -webkit-appearance: none;
31}