Added the project's files to the repo

This commit is contained in:
Ascendings
2015-08-30 12:34:43 -04:00
parent b66a773ed8
commit c425c861aa
154 changed files with 4670 additions and 0 deletions

View File

@ -0,0 +1,3 @@
@import 'base'
@import 'navigation'
@import 'footer'

41
assets/sass/partials/_base.sass Executable file
View File

@ -0,0 +1,41 @@
*
margin: 0px
padding: 0px
font-family: "Open Sans", sans-serif
font-size: 14px
html
width: 100%
+calc(height, "100% - 200px")
body
+size(100% auto)
height: 100%
#wrapper
+size(100% auto)
min-height: 100%
margin-bottom: 200px
padding-bottom: 70px
background: url(/img/bg2.jpg) no-repeat center center fixed
+background-size(cover)
#header
display: block
padding: -10px 0
text-align: center
/* Box shadow styles used for material design
.shadow-0
border: 1px solid #eee
.shadow-1
box-shadow: 0 2px 10px 0 rgba(#000, 0.16), 0 2px 5px 0 rgba(#000, 0.26)
.shadow-2
box-shadow: 0 6px 20px 0 rgba(#000, 0.19), 0 8px 17px 0 rgba(#000, 0.2)
.shadow-3
box-shadow: 0 17px 50px 0 rgba(#000, 0.19), 0 12px 15px 0 rgba(#000, 0.24)
.shadow-4
box-shadow: 0 25px 55px 0 rgba(#000, 0.21), 0 16px 28px 0 rgba(#000, 0.22)
.shadow-5
box-shadow: 0 40px 77px 0 rgba(#000, 0.22), 0 27px 24px 0 rgba(#000, 0.2)

View File

@ -0,0 +1,36 @@
#footer
+position(fixed, null null 0 0)
width: 100%
background: white
margin: 0
padding: 10px 15px
z-index: -9999999
.column-info
text-align: center
p
font:
size: 18px
weight: bold
text-decoration: underline
ul
list-style: none
a
text-decoration: none
color: $text-color
+transition(all, 200ms)
&:hover
color: $main-color
.copyright
p
color: $text-color
text-align: center
.mailing-list
p
color: $text-color

View File

@ -0,0 +1,30 @@
#nav
margin-bottom: 20px
ul
list-style: none
text-align: center
.nav_item
display: inline-block
background: none
border: none
border-bottom: 3px solid rgba($main-color, 0)
border-radius: none
+transition(border-color, 200ms)
a
display: block
+size(100% 100%)
padding: 5px 14px
text-decoration: none
color: #fff
font-size: 32px
font-weight: 600
+transition(color, 200ms)
&:hover
border-color: rgba($main-color, 1)
a
color: $main-color