diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-11-07 15:31:35 -0500 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-11-07 15:31:35 -0500 |
| commit | 7bbe52577c1ccf5fbd884362282e16a42262c06e (patch) | |
| tree | 9b0fc6efc184eb95848668ce1bfa6e893efce7e9 | |
| parent | 1b2f4c77e5785073fd2b75380b521e1160070488 (diff) | |
| parent | 63ee55d2a9146c969ebf9df590092ae71ac68969 (diff) | |
Merge branch 'master' of github.com:okfocus/vvalls
| -rwxr-xr-x | public/assets/stylesheets/app.css | 42 | ||||
| -rwxr-xr-x | views/home.ejs | 11 | ||||
| -rw-r--r-- | views/profile.ejs | 4 |
3 files changed, 50 insertions, 7 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 32fc817..8b987c1 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -375,7 +375,7 @@ h5 { .projectList.about .item span h3{ font-weight: 500; - font-size: 30px; + font-size: 25px; margin-bottom: 8px; } @@ -803,6 +803,37 @@ iframe.embed { background-attachment: fixed; } + +.projectList.about.gopro { + padding:6% 0; +} +.about.gopro h3 { + font-weight:500; + text-align:center; + margin-bottom:20px; +} +.gopro span{ + font-size: 24px; + font-weight: 300; + width: 740px; + display: block; + margin: 0 auto; + line-height: 50px; +} +.gopro span a{ + width: 100%; + display: inline-block; + text-align: center; + margin-top: 40px; + background: limegreen; + color: white; + -webkit-transition:0.2s background; + -moz-transition:0.2s background; + transition:0.2s background; +} +.gopro span a:hover{ + background:black; +} .profilepage .about h2 .btn { float: none; border: 1px solid; @@ -2358,9 +2389,6 @@ form li textarea { z-index: 5; } -.loading .hero .circle { - opacity:0; -} .desktop .hero .circle:hover { background:black; @@ -2885,6 +2913,12 @@ a[data-role="forgot-password"] { right: 10px; top: 20px; } + .gopro span { + font-size: 16px; + width: 93%; + line-height: 22px; + text-align: justify; + } } @media screen and (orientation:portrait) { diff --git a/views/home.ejs b/views/home.ejs index 0a55336..53d644a 100755 --- a/views/home.ejs +++ b/views/home.ejs @@ -64,7 +64,16 @@ <h1>Room Showcase</h1> [[ include projects/list-projects ]] - + + <div class="projectList about gopro"> + + <span> + <h3>Ready To Go Pro?</h3> + + We offer white-label licensing of the VValls platform that could be used within the context of your product offering. We can also customize the VValls platform to suit the various needs of your project. This could be include custom floor plans and numerous other features. Please inquire to start a conversation. + <a href="#">Contact</a> + </span> + </div> [[ include partials/confirm-modal ]] [[ include projects/layouts-modal ]] [[ include partials/sign-in ]] diff --git a/views/profile.ejs b/views/profile.ejs index 272deb7..5043df6 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -33,12 +33,12 @@ [[ } ]] [[ if (profile.website && profile.website.length) { ]] <span> - <a href="[[- profile.website ]]">[[- profile.website ]]</a> + <a href="[[- profile.website ]]" target="_blank">[[- profile.website ]]</a> </span> [[ } ]] [[ if (profile.twitterName && profile.twitterName.length) { ]] <span> - <a href="https://twitter.com/[[- profile.twitterName ]]">@[[- profile.twitterName ]]</a> + <a href="https://twitter.com/[[- profile.twitterName ]]" target="_blank">@[[- profile.twitterName ]]</a> </span> [[ } ]] </div> |
