diff --git a/public/theme/css/default.css b/public/theme/css/default.css index 116756f..4a6a426 100644 --- a/public/theme/css/default.css +++ b/public/theme/css/default.css @@ -139,9 +139,13 @@ textarea#paste { height: 450px; } -div.paste { - padding: 5px; +div.zerobin .paste.plaintext, +div.zerobin .paste.markdown { + border: 1px dashed #EAEAEA; + background-color: #F0F0F0; text-align: justify; + margin: 5px; + padding: 5px; } /* filebin */ diff --git a/templates/zerobin/view.html.ep b/templates/zerobin/view.html.ep index c31b950..78f534d 100644 --- a/templates/zerobin/view.html.ep +++ b/templates/zerobin/view.html.ep @@ -3,18 +3,19 @@ % my $paste = stash('paste') || {}; % my $fname = sprintf '%d.txt', $paste->{created};
<%= tag 'code' => (class => $paste->{syntax}) => $paste->{data}; %>+