[IMP] static page: add some css

This commit is contained in:
Géry Debongnie
2019-05-29 13:02:52 +02:00
parent d048348e07
commit c394b955ed
2 changed files with 41 additions and 10 deletions
+18 -10
View File
@@ -4,20 +4,28 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>OWL Framework</title> <title>OWL Framework</title>
<link rel="icon" href="data:,"> <link rel="icon" href="data:,">
<link rel="stylesheet" href="main.css">
</head> </head>
<body> <body>
<h1>🦉 OWL Framework 🦉</h1> <div class="title">
<h1>🦉 OWL Framework 🦉</h1>
<ul> <div>Mysterious OWL: A web framework for structured, dynamic and maintainable applications</div>
<li>Github project: <a href="https://github.com/odoo/owl">https://github.com/odoo/owl</a></li> </div>
<li>Documentation: <a href="https://github.com/odoo/owl/blob/master/doc/readme.md">https://github.com/odoo/owl/blob/master/doc/readme.md</a>
<li>Online playground: <a href="playground/">playground/</a>
</ul>
<p> <div class="section misc">
Are you a designer? Do you like CSS? Improve this page: make a PR! <ul>
</p> <li>Github project: <a href="https://github.com/odoo/owl">https://github.com/odoo/owl</a></li>
<li>Documentation: <a href="https://github.com/odoo/owl/blob/master/doc/readme.md">https://github.com/odoo/owl/blob/master/doc/readme.md</a>
<li>Online playground: <a href="playground/">playground/</a>
</ul>
</div>
<div class="footnote">
<p>
Are you a designer? Do you like CSS? Improve this page: make a PR!
</p>
</div>
</body> </body>
</html> </html>
+23
View File
@@ -0,0 +1,23 @@
body {
font-family: sans-serif;
}
.title, .section, .footnote {
width: 768px;
margin: auto;
}
.title div {
color: #333333;
font-style: italic;
}
.section {
background-color: #d5d5d5;
padding: 16px;
margin-top: 10px;
margin-bottom: 10px;
}
.links a {
margin: 10px 5px;
}