summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/app/shared/_footers.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/app/shared/_footers.scss')
-rw-r--r--app/assets/stylesheets/app/shared/_footers.scss90
1 files changed, 90 insertions, 0 deletions
diff --git a/app/assets/stylesheets/app/shared/_footers.scss b/app/assets/stylesheets/app/shared/_footers.scss
new file mode 100644
index 0000000..be0f54f
--- /dev/null
+++ b/app/assets/stylesheets/app/shared/_footers.scss
@@ -0,0 +1,90 @@
+// Footers
+// ----------------------------------------
+
+//@include sticky-footer(54px, "#container", "#footer-spacing", "footer");
+
+footer#main {
+ @include clearfix;
+ position:relative;
+ margin:$vertical-margin 0;
+ @include gradient(#fff, #FAF9FA);
+ border:1px solid #C0C0CA;
+ @extend .ext-bradius;
+ .light {
+ padding:10px 20px;
+ border:1px solid #ECECEF;
+ @extend .ext-bradius;
+ }
+
+ ul {
+ @include clearfix;
+ list-style:none;
+ float:left;
+ margin:0;
+ li {
+ float:left;
+ margin-bottom: 0px;
+ }
+ a {
+ @include debug;
+ line-height:43px;
+ padding: 10px 20px;
+ border:{
+ left:1px solid $border-dark-color;
+ };
+ }
+ li:first-child a{
+ border-left:none;
+ }
+// @include horizontal-navigation(
+// /*$height : */ 32px,
+// /*$color : */ red,
+// /*$hover-color : */ red,
+// /*$active-color : */ red,
+// /*$text-shadow : */ #530008,
+// /*$bg : */ none,
+// /*$bg-hover : */ none,
+// /*$bg-active : */ none,
+// /*$box-shadow : */ none,
+// /*$box-shadow-hover : */ none,
+// /*$box-shadow-active : */ none,
+// /*$border-light : */ #E3E3E8,
+// /*$border-shadow : */ lighten(#E3E3E8,5%),
+// /*$padding : */ 0 10px,
+// /*$margin : */ none,
+// /*\border-radius : */ none,
+// /*$font-weight : */ none,
+// /*$font-size : */ 14px,
+// /*$tab-space : */ none
+// );
+ }
+
+}
+
+.amooma-logo {
+ background:#FAF9FA;
+ @include debug;
+ float:right;
+ padding:7px 7px 7px 16px;
+ @include border-radius(0 $global-border-radius $global-border-radius 0);
+ border-left:1px solid $border-dark-color;
+ @include box-shadow(-1px -1px 1px #FFFFFF);
+ a {
+ @include image-replace('amooma-logo.png');
+ float:right;
+ opacity:0.6;
+ margin: 5px 5px 0 0;
+ &:hover {
+ opacity:1;
+ }
+ }
+ span {
+ @include debug;
+ font-size:11px;
+ color:#74748B;
+ float:left;
+ line-height:30px;
+ margin-right:10px;
+ }
+
+} \ No newline at end of file