Showing 3 changed files with 11 additions and 1 deletions
+9
public/css/readme.css
... ...
@@ -0,0 +1,9 @@
1
+pre.README {
2
+  background             : white;
3
+  border-top-left-radius : 0;
4
+  border-radius          : 1px;
5
+  border-top             : none;
6
+  padding                : 27px;
7
+  font-size              : 16px;
8
+  margin-bottom          : 80px;
9
+}
+1 -1
templates/include/readme.html.ep
... ...
@@ -24,5 +24,5 @@
24 24
   <div class="border-gray bk-gray-light" style="border-radius:1px;font-size:17px;padding:10px">
25 25
     <i class="icon-book" style="margin-top:2px"></i> README
26 26
   </div>
27
-  <pre class="border-gray " style="background:white;border-top-left-radius:0;border-radius:1px;border-top:none;padding:27px;font-size:16px;margin-bottom:80px"><%== $readme_e %></pre>
27
+  <pre class="border-gray README"><%== $readme_e %></pre>
28 28
 % }
+1
templates/layouts/common.html.ep
... ...
@@ -9,6 +9,7 @@
9 9
     % my $title = stash('title');
10 10
     <title><%= $title ? "$title \x{30fb} Gitprep" : 'Gitprep' %></title>
11 11
     %= stylesheet '/css/bootstrap.min.css', rel => 'stylesheet', media => 'screen';
12
+    %= stylesheet '/css/readme.css',        rel => 'stylesheet', media => 'screen';
12 13
     % for my $stylesheet (@$stylesheets) {
13 14
       %= stylesheet $stylesheet;
14 15
     % }