summaryrefslogtreecommitdiffstats
path: root/htdocs/css/style.css
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2014-05-07 11:23:04 +0800
committerJeremy Kerr <jk@ozlabs.org>2014-05-07 11:26:45 +0800
commitb6f1c6d1e2fe24808501b9e9b2f8ac948782c814 (patch)
tree93ebbef007c206eefa45340a347ea24ce2bc8bb0 /htdocs/css/style.css
parentd1b9cdb4c54f4b5081c877794a66b2a9fb753328 (diff)
downloadpatchwork-b6f1c6d1e2fe24808501b9e9b2f8ac948782c814.tar.bz2
patchwork-b6f1c6d1e2fe24808501b9e9b2f8ac948782c814.tar.xz
templates: display projects as inline-block elements
... rather than one long list. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'htdocs/css/style.css')
-rw-r--r--htdocs/css/style.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css
index 2b9f770..87e0cd5 100644
--- a/htdocs/css/style.css
+++ b/htdocs/css/style.css
@@ -247,6 +247,28 @@ input#reorder-change {
border:1px solid #234f32;
}
+/* project list view */
+.project-set {
+}
+
+.project-set .project {
+ display: inline-block;
+ vertical-align: top;
+ background: #fcfcfc;
+ border: thin solid #f0f0f0;
+ box-shadow: 5px 5px 5px #c0c0c0;
+ margin: 2em 0.2em;
+ padding: 1em;
+ width: 20em;
+ min-height: 5em;
+}
+
+.project h2.project-title {
+ font-weight: bold;
+ font-size: 110%;
+ margin: 0.2em 0;
+}
+
/* patch view */
table.patchmeta th {
text-align: left;