Commit 14a19561 authored by yann300's avatar yann300

fix landing page

parent d1322927
...@@ -18,8 +18,12 @@ var css = csjs` ...@@ -18,8 +18,12 @@ var css = csjs`
font-family : "Lucida Console", Monaco, monospace; font-family : "Lucida Console", Monaco, monospace;
} }
.logo { .logo {
position: absolute; position : absolute;
opacity: 0.3; opacity : 0.3;
z-index : 0;
}
.section {
z-index : 10;
} }
` `
...@@ -36,7 +40,7 @@ class LandingPage { ...@@ -36,7 +40,7 @@ class LandingPage {
` `
for (var i = 0; i < this.sections.length; i++) { for (var i = 0; i < this.sections.length; i++) {
totalLook.appendChild(yo` totalLook.appendChild(yo`
<div> <div class="${css.section}" >
${this.sections[i].render()} ${this.sections[i].render()}
</div> </div>
`) `)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment