Showing 2 changed files with 13 additions and 3 deletions
+11 -1
public/css/common.css
... ...
@@ -35,6 +35,16 @@
35 35
   box-sizing: border-box;
36 36
 }
37 37
 
38
+.tree-description {
39
+  font-size:19px;
40
+  padding-top:3px;
41
+  padding-bottom:9px;
42
+}
43
+.tree-description a {
44
+  font-size:18px;
45
+  font-weight:normal;
46
+}
47
+
38 48
 .header-issue-count {
39 49
   background:#eee;
40 50
   color:#555;
... ...
@@ -2502,7 +2512,7 @@ button.close {
2502 2512
 }
2503 2513
 
2504 2514
 .project-header {
2505
-  background:#fafafa;
2515
+  background:#fafcfa;
2506 2516
   border-bottom: none;
2507 2517
   margin-bottom:12px;
2508 2518
   overflow:hidden;
+2 -2
templates/tree.html.ep
... ...
@@ -89,10 +89,10 @@
89 89
     %= include '/include/message', message => flash('message');
90 90
     
91 91
     % if ($is_project_top_page) {
92
-      <h3 style="font-weight:normal;color:#666;margin:20px 0px 20px 0;font-size:16px;line-height:0">
92
+      <h3 class="tree-description">
93 93
         <%= $desc %>
94 94
         % if (defined $website_url && length $website_url) {
95
-          <a href="<%= $website_url %>"><%= $website_url %></a>
95
+          <a href="<%= $website_url %>">website</a>
96 96
         % }
97 97
       </h3>
98 98
     % }