Frontend app directory structure

This commit is contained in:
2015-03-08 15:10:40 +07:00
parent b0c75adab1
commit 55f1c718a7
11 changed files with 186 additions and 6 deletions
+36
View File
@@ -0,0 +1,36 @@
section {
float: left;
}
.app {
width: 100%;
}
.menu {
width: 13em;
}
.menu ul {
margin: 0;
padding: 0;
}
li.nav {
display: block;
line-height: 2.5em;
padding: 0 1em;
cursor: pointer;
}
.nav.empact {
font-weight: 600;
}
.nav.header {
color: #aaa;
cursor: default;
}
.content {
width: calc(100% - 13em);
}
.content .left, .content .right {
float: left;
width: 50%;
}
+29
View File
@@ -0,0 +1,29 @@
* {
box-sizing: border-box;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
font-weight: 400;
}
html, body {
margin: 0;
padding: 0;
}
h1 {
position: absolute;
left: 15%;
top: 20%;
width: 70%;
text-align: center;
color: #aaa;
}
a {
position: absolute;
top: 40%;
width: 100%;
text-align: center;
}
img {
width: 60px;
}