summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorerdgeist <erdgeist@bauklotz.fritz.box>2016-08-14 10:59:03 +0200
committererdgeist <erdgeist@bauklotz.fritz.box>2016-08-14 10:59:03 +0200
commitd2d33745aad3e4464dba6282b2cdc41f26646bdc (patch)
treed9d8a36621ed326bed220da76ebfb1cf5e394ba1 /style.css
parent5012c6882625b3cf342210bdc9f965d312f4b03e (diff)
Indent was off by one pixel
Diffstat (limited to 'style.css')
-rw-r--r--style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/style.css b/style.css
index 9e0afe6..9f28aa7 100644
--- a/style.css
+++ b/style.css
@@ -382,8 +382,8 @@ input[type=checkbox]:not(old) + label {
382 display : inline-block; 382 display : inline-block;
383 margin-left : 0; 383 margin-left : 0;
384 line-height : 1.7em; 384 line-height : 1.7em;
385 text-indent : -59.5px; /* Make 2nd line of label align, takes border width of tickbox into account */ 385 text-indent : -58.5px; /* Make 2nd line of label align, takes border width of tickbox into account */
386 padding-left : 59.5px; 386 padding-left : 58.5px;
387} 387}
388 388
389input[type=checkbox]:not(old) + label > span { 389input[type=checkbox]:not(old) + label > span {