diff options
author | David Baker <dave@matrix.org> | 2016-04-28 17:29:39 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-04-28 17:29:39 +0100 |
commit | 46b5547a4227ec29e0b71e2138a2ebade39724ca (patch) | |
tree | 0da53e6463d5ff9589c2185d8e5e6b0197c0685b /res/templates/mail.css | |
parent | Fix notification link (diff) | |
download | synapse-46b5547a4227ec29e0b71e2138a2ebade39724ca.tar.xz |
Some basic css to make it halfway legible
Diffstat (limited to 'res/templates/mail.css')
-rw-r--r-- | res/templates/mail.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/res/templates/mail.css b/res/templates/mail.css new file mode 100644 index 0000000000..be63b8c337 --- /dev/null +++ b/res/templates/mail.css @@ -0,0 +1,35 @@ +body { + font-family: "Open Sans", Helvetica, Arial, sans-serif; + font-size: 12pt; + margin: 1em; +} + +#page { + margin: auto; + width: 640px; + padding: 1em; + border: 1px solid #76cfa6; + border-radius: 5px; +} + +.room_avatar { + width: 48px; + height: 48px; + float: left; +} + +.room_content { + clear: left; +} + +.historical { + color: #888; +} + +.sender_name { + display: inline; +} + +.message_time { + display: inline; +} |