Auf lesscss umgestellt
[website] / src / main / webapp / less / base / util.less
diff --git a/src/main/webapp/less/base/util.less b/src/main/webapp/less/base/util.less
new file mode 100644 (file)
index 0000000..1ab1226
--- /dev/null
@@ -0,0 +1,20 @@
+/** Allgemein nützliche Marker-Klassen */
+
+
+/** Micro Clearfix-Hack nach http://nicolasgallagher.com/micro-clearfix-hack/ */
+
+.cf:before,
+.cf:after {
+  content: "";
+  display: table;
+}
+.cf:after {
+  clear:both;
+}
+
+/** Hide helpful content in a way, that it is still accessible to screen-readers */
+.hide{
+  position: absolute;
+  left: -99999999em;
+}
+