diff options
author | Roman Gräf <roman.graef@gmail.com> | 2017-11-07 16:04:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 16:04:18 +0100 |
commit | 89aef9a6dc94a889b7620182be493605f2232db6 (patch) | |
tree | 1145808e52fe4ad63a22e78fb7bdabcd7c5c6d40 /res/default.css | |
parent | 48459fe12a79db303fd7c0cd2ae64cf3bc8c85e9 (diff) | |
download | ichtml-master.tar.gz ichtml-master.tar.bz2 ichtml-master.zip |
Diffstat (limited to 'res/default.css')
-rw-r--r-- | res/default.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/res/default.css b/res/default.css index d89fae1..97af144 100644 --- a/res/default.css +++ b/res/default.css @@ -3,12 +3,23 @@ body { margin: 0;
}
+
img {
vertical-align: middle;
}
+#content img {
+ width: 100%;
+}
+
a {
text-decoration: none;
+ color: inherit;
+}
+
+a.highlight {
+ text-decoration: underline;
+ text-decoration-style: dotted;
}
.button {
@@ -39,7 +50,7 @@ a { }
#content {
- margin: 0 auto;
+ margin: 10px auto;
line-height: 1.5em;
width: 70%;
}
|