Added support for images to character stats sheet. Introduced some basic css rules for print settings. The later does not render correctly in Firefox yet.

This commit is contained in:
phil 2013-07-16 15:50:58 +02:00
parent 3bd4e25be2
commit f28126d145
16 changed files with 126 additions and 39 deletions

View file

@ -16,4 +16,13 @@ article {
background-color: rgba(252, 253, 246, 0.85);
transition: width 1s, background-color 1s; -webkit-transition: width 1s, background-color 1s; -moz-transition: width 1s, background-color 1s; -ms-transition: width 1s, background-color 1s; }
a {
text-decoration: none; }
text-decoration: none; }
@media print {
body {
background-image: none;
background-color: transparent; }
article {
background-color: transparent;
width: auto; }
}