Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/new_stack'
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed May 15, 2015
2 parents 7594df3 + d8594cf commit 3db319a
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 41 deletions.
51 changes: 32 additions & 19 deletions public/stylesheets/app.css
Expand Up @@ -3022,7 +3022,8 @@ html {
}
body {
-webkit-text-size-adjust: none;
font: 16px/30px 'Avenir';
font: 16px/30px 'Avenir', Arial, sans-serif;
font-weight: 200;
color: rgba(255,255,255,0.8);
background: #000;
height: 100%;
Expand All @@ -3048,7 +3049,8 @@ textarea,
select,
button {
outline: none;
font-family: 'Avenir';
font-family: 'Avenir', Arial, sans-serif;
font-weight: 200;
}
a {
color: #01b7ee;
Expand Down Expand Up @@ -3376,6 +3378,14 @@ ul li {
display: inline-block;
vertical-align: middle;
}
#menu .supported {
display: none;
}
@media (min-width: 768px) {
#menu .supported {
display: block;
}
}
@media screen and (min-width: 992px) and (max-height: 750px) {
#menu {
overflow-y: scroll;
Expand All @@ -3387,21 +3397,17 @@ ul li {
bottom: 0;
left: 0;
font-size: 14px;
padding-bottom: 50px;
text-align: center;
color: #999;
z-index: 10;
display: block;
margin: 0 auto;
}
@media (min-width: 768px) {
.supported {
position: fixed;
width: 240px;
}
}
@media (min-width: 992px) {
.supported {
width: 330px;
width: 100%;
margin-left: -10px;
position: absolute;
bottom: 20px;
}
}
.supported .auth0 {
Expand All @@ -3412,9 +3418,11 @@ ul li {
margin-bottom: -8px;
background: url("../images/supported_logo.svg") no-repeat;
}
@media screen and (min-width: 992px) and (max-height: 680px) {
@media screen and (min-width: 768px) and (max-height: 750px) {
.supported {
display: none;
position: relative;
bottom: auto;
margin-top: 80px;
}
}
.menu-hold {
Expand Down Expand Up @@ -3508,7 +3516,8 @@ ul li {
position: relative;
-webkit-transform: none;
transform: none;
top: 80px;
top: auto;
margin-top: 80px;
}
}
.rw-wrapper {
Expand Down Expand Up @@ -3577,6 +3586,15 @@ ul li {
padding-left: 350px;
}
}
.content .supported {
display: block;
margin-top: 40px;
}
@media (min-width: 768px) {
.content .supported {
display: none;
}
}
.home {
max-width: 840px;
width: 100%;
Expand Down Expand Up @@ -4421,11 +4439,6 @@ html.is-menu body .social li:last-child {
font-weight: bold;
color: #d4fd02;
}
@media (min-width: 992px) {
.ie .search-con .results {
width: 1000px;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
Expand Down
47 changes: 29 additions & 18 deletions public/stylesheets/app.styl
Expand Up @@ -9,7 +9,8 @@ html

body
-webkit-text-size-adjust none
font 16px/30px 'Avenir'
font 16px/30px 'Avenir', Arial, sans-serif
font-weight 200
color rgba(255,255,255,.8)
background #000
height 100%
Expand All @@ -28,7 +29,8 @@ body

input, textarea, select, button
outline none
font-family 'Avenir'
font-family 'Avenir', Arial, sans-serif
font-weight 200

a
color blue
Expand Down Expand Up @@ -291,25 +293,31 @@ ul
display inline-block
vertical-align middle

.supported
display none
+breakpoint("tablet")
display block

.supported
clear both
padding 10px
bottom 0
left 0
font-size: 14px;
padding-bottom 50px
font-size 14px
text-align center
color #999
z-index 10
display block
margin 0 auto
+breakpoint("tablet")
position fixed
width 240px
+breakpoint("desktop")
width 330px

@media screen and ( max-height: 680px )
display none
width 100%
margin-left -10px
position absolute
bottom 20px
+breakpoint("tablet")
@media screen and ( max-height: 750px )
position relative
bottom auto
margin-top 80px

.auth0
width 24px
Expand Down Expand Up @@ -338,7 +346,8 @@ ul
position relative
-webkit-transform none
transform none
top 80px
top auto
margin-top 80px

li
padding-left 26%
Expand Down Expand Up @@ -401,6 +410,7 @@ ul
li
margin 0 5px 0


.rw-wrapper
position: relative;

Expand Down Expand Up @@ -452,6 +462,12 @@ ul
+breakpoint("desktop")
padding-left 350px

.supported
display block
margin-top 40px
+breakpoint("tablet")
display none

.home
max-width 840px
width 100%
Expand Down Expand Up @@ -1098,11 +1114,6 @@ html.is-menu, html.is-menu body
color: yellow;



+breakpoint("desktop")
.ie .search-con .results
width 1000px

@keyframes blink {
to {
visibility: hidden;
Expand Down
11 changes: 7 additions & 4 deletions views/layout.jade
Expand Up @@ -87,15 +87,18 @@ html(lang="en")
li
a(href='/', data-search='') Strategies

a(href='http://auth0.com', target='_blank').supported
| Supported by
i.auth0


#page-content.content
block content



a(href='http://auth0.com', target='_blank').supported
| Supported by
i.auth0
a(href='http://auth0.com', target='_blank').supported
| Supported by
i.auth0

.search-con
.head
Expand Down

0 comments on commit 3db319a

Please sign in to comment.