From a05817d40a7fab3c1ece32615dd316231742a0e1 Mon Sep 17 00:00:00 2001 From: erdgeist Date: Sat, 13 Aug 2016 19:23:43 +0200 Subject: Use our own style for checkboxes --- index.html | 28 ++++++++++++++-------------- style.css | 43 ++++++++++++++++++++++++++++++++++++------- 2 files changed, 50 insertions(+), 21 deletions(-) diff --git a/index.html b/index.html index 97da700..8f3af91 100644 --- a/index.html +++ b/index.html @@ -160,13 +160,13 @@

Der Anschlussinhaber wird in der Abmahnung als Täter angenommen. Dies ist meist inkorrekt. Gibt es Beweise, dass Sie nicht der Täter sind, wählen Sie das entsprechende Häkchen:

- - - - - - - +
+
+
+
+
+
+
Weiter
@@ -179,13 +179,13 @@

Um nicht als Störer in Haftung genommen zu werden, sind Hinweise hilfreich, aus welchem Grund auch eine Störerhaftung nicht in Betracht kommt. Bitte wählen Sie die entsprechenden Häkchen.

- - - - - - - +
+
+
+
+
+
+

Achtung: Unrichtige Angaben zum Sachverhalt können Ihnen vor Gericht belastend ausgelegt werden. Wählen Sie daher auf jeden Fall nur die Häkchen aus, die den Tatsachen entsprechen.
diff --git a/style.css b/style.css index 2662fc7..f05343d 100644 --- a/style.css +++ b/style.css @@ -335,13 +335,42 @@ select { } label { - display: block; - padding-left: 40px; - text-indent: -25px; -} - -label input { - margin-right: 10px; + margin-bottom: 0.4em; +} + +input[type=checkbox]:not(old) { + display : none; + opacity : 0; +} + +input[type=checkbox]:not(old) + label { + display : inline-block; + margin-left : 0; + line-height : 1.5em; + text-indent : -2.0625em; /* Make 2nd line of label align, takes border width of tickbox into account */ + padding-left : 2.0625em; +} + +input[type=checkbox]:not(old) + label > span { + display : inline-block; + width : 1em; + height : 1em; + margin : 0.25em 1em 0.25em 0; + border : 0.0625em solid white; + border-radius : 25%; + vertical-align : top; +} + +input[type=checkbox]:not(old):checked + label > span:before { + content : '✓'; + display : inline-block; + width : 1em; + color : white; + font-size : 1.4em; + line-height : 1em; + text-align : center; + font-weight : bold; + margin-left : 2.1em; } #wrapper.step1 .block-step1 .juice, -- cgit v1.2.3