[IMP] extras: improve landing page

This commit is contained in:
Géry Debongnie
2019-05-29 13:16:12 +02:00
parent f60904b740
commit 60cea14b01
2 changed files with 36 additions and 25 deletions
+17 -13
View File
@@ -22,21 +22,25 @@
</div> </div>
</div> </div>
<div class="section benchmarks"> <div class="section">
<h2>Benchmarks</h2> <h2>Benchmarks</h2>
<ul> <div class="benchmarks">
<li><a href="benchmarks/odoo-widgets-12.0">Odoo Widgets (12.0)</a></li> <ul>
<li><a href="benchmarks/odoo-widgets-12.3">Odoo Widgets (12.3)</a></li> <li><a href="benchmarks/owl-0.7.0">OWL 0.7.0</a></li>
<li><a href="benchmarks/owl-0.7.0">OWL 0.7.0</a></li> <li><a href="benchmarks/owl-0.8.0">OWL 0.8.0</a></li>
<li><a href="benchmarks/owl-0.8.0">OWL 0.8.0</a></li> <li><a href="benchmarks/owl-0.9.0">OWL 0.9.0</a></li>
<li><a href="benchmarks/owl-0.9.0">OWL 0.9.0</a></li> <li><a href="benchmarks/owl-0.10.0">OWL 0.10.0</a></li>
<li><a href="benchmarks/owl-0.10.0">OWL 0.10.0</a></li> <li><a href="benchmarks/owl-0.11.0">OWL 0.11.0</a></li>
<li><a href="benchmarks/owl-0.11.0">OWL 0.11.0</a></li> <li><a href="benchmarks/owl-master">OWL Master</a></li>
<li><a href="benchmarks/owl-master">OWL Master</a></li> </ul>
<li><a href="benchmarks/vue">Vue</a></li> <ul>
<li><a href="benchmarks/react">React</a></li> <li><a href="benchmarks/odoo-widgets-12.0">Odoo Widgets (12.0)</a></li>
</ul> <li><a href="benchmarks/odoo-widgets-12.3">Odoo Widgets (12.3)</a></li>
<li><a href="benchmarks/vue">Vue</a></li>
<li><a href="benchmarks/react">React</a></li>
</ul>
</div>
</div> </div>
</body> </body>
+19 -12
View File
@@ -1,23 +1,30 @@
body { body {
font-family: sans-serif; font-family: sans-serif;
} }
.title, .section { .title,
width: 768px; .section {
margin: auto; width: 768px;
margin: auto;
} }
.title div { .title div {
color: #333333; color: #333333;
font-style: italic; font-style: italic;
} }
.section { .section {
background-color: #d5d5d5; background-color: #d5d5d5;
padding: 16px; padding: 16px;
margin-top: 10px; margin-top: 10px;
margin-bottom: 10px; margin-bottom: 10px;
} }
.links a { .links a {
margin: 10px 5px; margin: 10px 5px;
} }
.benchmarks {
display: grid;
grid-template-columns: auto auto;
}