sheet.xsl: improve css

master
pictuga 2020-08-21 23:54:12 +02:00
parent bd182bcb85
commit 8161baa7ae
1 changed files with 10 additions and 0 deletions

View File

@ -18,12 +18,18 @@
<meta name="robots" content="noindex" /> <meta name="robots" content="noindex" />
<style type="text/css"> <style type="text/css">
body * {
box-sizing: border-box;
}
body { body {
overflow-wrap: anywhere; overflow-wrap: anywhere;
word-wrap: anywhere; word-wrap: anywhere;
word-break: break-word; word-break: break-word;
font-family: sans-serif; font-family: sans-serif;
-webkit-tap-highlight-color: transparent; /* safari work around */
} }
input, select { input, select {
@ -133,6 +139,10 @@
padding: 1%; padding: 1%;
} }
.item > *:empty {
display: none;
}
.item > :not(:last-child) { .item > :not(:last-child) {
border-bottom: 1px solid silver; border-bottom: 1px solid silver;
} }