summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2013-08-24 11:49:50 -0400
committerMartin Peres <martin.peres@labri.fr>2013-08-24 18:28:15 +0200
commit946cb97e5dd01607b91f906bd496761fb2a5bb3b (patch)
treec6894fe167e51a26733e043021ec0647f7acaeb6 /index.css
parent3ead47c2701c7d25861b3d5ac7b930c5ce39b7da (diff)
move index-specific css into a separate index.css file
Diffstat (limited to 'index.css')
-rw-r--r--index.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..3aa1609
--- /dev/null
+++ b/index.css
@@ -0,0 +1,38 @@
+body {
+ background: #dedede;
+}
+div#content, div#footer {
+ margin: 0;
+ padding: 1em 2em;
+ background: #dedede;
+}
+.box {
+ border: 1px solid #aaa;
+ background: white;
+ padding: 5px;
+ height: 100%;
+}
+.boxes {
+ width: 100%;
+ max-width: 800px;
+ margin: 0 auto;
+}
+.boxes > tbody > tr {
+ background-color: inherit;
+}
+.boxes > tbody > tr > td {
+ padding: 2px;
+}
+.boxes > tbody > tr > td:not(.wide) {
+ width: 50%;
+ height: 180px;
+}
+.boxes h2, .boxes h1 {
+ margin-top: 0;
+}
+.versions tr:nth-child(even) {
+ background: #eee;
+}
+.versions tr:nth-child(odd) {
+ background: white;
+}