diff --git a/.gitignore b/.gitignore index 036801b..bdb6be9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,13 @@ /www/node_modules/* /www/grunt-dev.command + +/develephant.sublime-project +/develephant.sublime-workspace +/www/.sass-cache/3dbc04bfe69e17227dce1ea509504a618e9d3d3e/ +/www/.sass-cache/535e3c385b6c8541f697c34c8c74c45c48a576e9/ +/www/.sass-cache/801cfac9e68f70b430db16eac24b394c40640bbe/ +/www/.sass-cache/8af851f26d43817d4ae987a66271a151cfc7cfc6/ +/www/.sass-cache/e5ac0bc0e3b53a67aff152936f9e6ff32e0553ea/ + +/www/app/assets/css/style.min.css +/www/app/assets/js/scripts.min.js diff --git a/www/app/assets/fonts/icons/develephant.eot b/www/app/assets/fonts/icons/develephant.eot new file mode 100755 index 0000000..21c69d4 Binary files /dev/null and b/www/app/assets/fonts/icons/develephant.eot differ diff --git a/www/app/assets/fonts/icons/develephant.svg b/www/app/assets/fonts/icons/develephant.svg new file mode 100755 index 0000000..107c046 --- /dev/null +++ b/www/app/assets/fonts/icons/develephant.svg @@ -0,0 +1,15 @@ + + + +Generated by IcoMoon + + + + + + + + + + + \ No newline at end of file diff --git a/www/app/assets/fonts/icons/develephant.ttf b/www/app/assets/fonts/icons/develephant.ttf new file mode 100755 index 0000000..7e15e5f Binary files /dev/null and b/www/app/assets/fonts/icons/develephant.ttf differ diff --git a/www/app/assets/fonts/icons/develephant.woff b/www/app/assets/fonts/icons/develephant.woff new file mode 100755 index 0000000..9fc7af0 Binary files /dev/null and b/www/app/assets/fonts/icons/develephant.woff differ diff --git a/www/app/assets/images/develephant_logo.png b/www/app/assets/images/develephant_logo.png new file mode 100644 index 0000000..f7e5064 Binary files /dev/null and b/www/app/assets/images/develephant_logo.png differ diff --git a/www/app/index.html b/www/app/index.html new file mode 100644 index 0000000..fd8d184 --- /dev/null +++ b/www/app/index.html @@ -0,0 +1,79 @@ + + + + + + Dev Elephant + + + + + + +
+
+
+

Dev Elephant

+ + + +
+
+
+
+

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam

+ +
+
+ + Register + + +
+ Sign Up +
+ Sign In + + +
+
+ +
+ + + \ No newline at end of file diff --git a/www/app/no-projects.html b/www/app/no-projects.html new file mode 100644 index 0000000..6cb6e30 --- /dev/null +++ b/www/app/no-projects.html @@ -0,0 +1,53 @@ + + + + + + Dev Elephant + + + + + + +
+
+
+

Dev Elephant

+ +
+
+
+
+

You don't have any projects!

+

Get started below

+ + + Add Project + + +
+
+ +
+ + + \ No newline at end of file diff --git a/www/app/project.html b/www/app/project.html new file mode 100644 index 0000000..5a21a83 --- /dev/null +++ b/www/app/project.html @@ -0,0 +1,129 @@ + + + + + + Dev Elephant + + + + + + +
+
+
+

Dev Elephant

+ +
+
+
+
+
+
+ +
    +
  • +
    + +
    +
    + +
    +
  • + +
+
+
+ To do +
+
+
+ +
+ + + \ No newline at end of file diff --git a/www/app/projects.html b/www/app/projects.html new file mode 100644 index 0000000..4ffd66d --- /dev/null +++ b/www/app/projects.html @@ -0,0 +1,81 @@ + + + + + + Dev Elephant + + + + + + +
+
+
+

Dev Elephant

+ +
+
+
+
+

Active Projects

+ Add Project + + + +

Complete Projects

+ + +
+
+ +
+ + + \ No newline at end of file diff --git a/www/grunt-build.command b/www/grunt-build.command old mode 100644 new mode 100755 diff --git a/www/src/scss/modules/_buttons.scss b/www/src/scss/modules/_buttons.scss index e69de29..e528fdd 100644 --- a/www/src/scss/modules/_buttons.scss +++ b/www/src/scss/modules/_buttons.scss @@ -0,0 +1,11 @@ +.btn { + padding: 0 15px; + height: 30px; + line-height: 30px; + background: #FF6B6B; + display: block; + color: #FFF; + text-decoration: none; + text-align: center; + margin-top: 5px; +} \ No newline at end of file diff --git a/www/src/scss/modules/_defaults.scss b/www/src/scss/modules/_defaults.scss index e69de29..61f7709 100644 --- a/www/src/scss/modules/_defaults.scss +++ b/www/src/scss/modules/_defaults.scss @@ -0,0 +1,24 @@ + +.global-width { + margin: 0 auto; + max-width: 1280px; + padding: 0 8px; +} +h1 { + margin-left: 40px; + color: #FFF; + font-size: 25px; + line-height: 40px; +} +h2, .h2 { + font-size: 2rem; + font-weight: bold; +} +a { + color: #FF6B6B; +} +p { + margin: 20px 0; +} + + diff --git a/www/src/scss/modules/_lists.scss b/www/src/scss/modules/_lists.scss index e69de29..47857fb 100644 --- a/www/src/scss/modules/_lists.scss +++ b/www/src/scss/modules/_lists.scss @@ -0,0 +1,18 @@ +li { + position: relative; +} +.label { + position: absolute; + top: 4px; + left: 4px; + font-size: 23px; + color: #CCC; +} +input { + width: 100%; + padding: 5px 5px 5px 30px; +} +label { + text-indent: -9999em; + display: block; +} \ No newline at end of file diff --git a/www/src/scss/modules/_typography.scss b/www/src/scss/modules/_typography.scss index e69de29..173e609 100644 --- a/www/src/scss/modules/_typography.scss +++ b/www/src/scss/modules/_typography.scss @@ -0,0 +1,46 @@ +@font-face { + font-family: 'develephant'; + src:url('../fonts/icons/develephant.eot'); + src:url('../fonts/icons/develephant.eot?#iefix') format('embedded-opentype'), + url('../fonts/icons/develephant.ttf') format('truetype'), + url('../fonts/icons/develephant.woff') format('woff'), + url('../fonts/icons/develephant.svg#develephant') format('svg'); + font-weight: normal; + font-style: normal; +} +[class^="icon-"], [class*=" icon-"] { + font-family: 'develephant'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +[class^="icon-"] > span, [class*=" icon-"] > span { + position: absolute; + top: 0; + left: -9999em; + display: block; +} +.icon-menu:before { + content: "\e600"; + font-size: 32px; + font-size: 3.2rem; + line-height: 40px; + +} +.icon-plus:before { + content: "\e601"; +} +.icon-cog:before { + content: "\e602"; +} +.icon-mail:before { + content: "\e603"; +} +.icon-lock:before { + content: "\e604"; +} \ No newline at end of file diff --git a/www/src/scss/partials/_footer.scss b/www/src/scss/partials/_footer.scss index e69de29..30c1ccf 100644 --- a/www/src/scss/partials/_footer.scss +++ b/www/src/scss/partials/_footer.scss @@ -0,0 +1,11 @@ +footer { + text-align: center; + margin-top: 50px; +} +footer p { + font-size: 14px; +} +footer a { + color: #222; + text-decoration: none; +} \ No newline at end of file diff --git a/www/src/scss/partials/_header.scss b/www/src/scss/partials/_header.scss index e69de29..264565c 100644 --- a/www/src/scss/partials/_header.scss +++ b/www/src/scss/partials/_header.scss @@ -0,0 +1,21 @@ +.head-wrap { + height: 40px; + background: #FF6B6B; +} +header { + position: relative; +} +.logo { + position: absolute; + top: 0; + right: 6px; + color: #FFF; + background: url(../images/develephant_logo.png) no-repeat; + width: 91px; + height: 105px; + text-indent: -999em; +} +header a { + color: #FFF; + text-decoration: none; +} \ No newline at end of file diff --git a/www/src/scss/partials/_nav.scss b/www/src/scss/partials/_nav.scss index e69de29..085a7cd 100644 --- a/www/src/scss/partials/_nav.scss +++ b/www/src/scss/partials/_nav.scss @@ -0,0 +1,25 @@ +nav { + position: absolute; + top: 0; + left: 0px; +} + +.menu-link { + position: relative; + text-align: center; + width: 50px; +} +.menu-link ul { + position: absolute; + left: -9999em; + top: 40px; + background: #222; + width: 150px; + padding: 8px; +} +.menu-link:hover { + background: #333; +} +.menu-link:hover ul { + left: -2px; +} \ No newline at end of file