HTML-Templates für die direkte Kontrolle als UTF-8-Kodiert markiert
[website] / less / base / util.less
1 /** Allgemein nützliche Marker-Klassen */
2
3
4 /** Micro Clearfix-Hack nach http://nicolasgallagher.com/micro-clearfix-hack/ */
5
6 .cf:before,
7 .cf:after {
8   content: "";
9   display: table;
10 }
11 .cf:after {
12   clear:both;
13 }
14
15 /** Hide helpful content in a way, that it is still accessible to screen-readers */
16 .hide{
17   position: absolute;
18   left: -99999999em;
19 }
20
21
22 /** Symbol-Font für Vektor-Icons */
23
24 .symbols
25 {
26   font-family: 'symbols';
27 }
28
29 a.img
30 {
31   border: none;
32 }