More progress on welcome signup

This commit is contained in:
Victoria Wang 2015-02-20 00:00:00 -06:00
parent c3b58beb68
commit ef404e4d20
2 changed files with 57 additions and 6 deletions

View file

@ -1412,6 +1412,41 @@ a.tag:hover {
float: left; float: left;
background: 0; background: 0;
padding-bottom: 0; padding-bottom: 0;
ul {
clear: both;
&.main-features {
font-size: 140%;
margin-bottom: .7em;
li {
margin-bottom: .25em;
}
}
}
li span {
border-bottom: 1px dotted #bbb;
cursor: help;
}
.plan-image {
margin: 24px 15px 20px 0;
float: left;
width: 77px;
}
.price {
font-size: 2.4em;
margin-top: 30px;
}
}
.col.free, .col.supporter {
padding: 35px 40px 25px 40px;
.content {
padding: 0;
}
@media(max-device-width:480px), screen and (max-width:550px) {
padding: 14px 10px;
}
} }
.col.free { .col.free {
width: 29%; width: 29%;
@ -1420,19 +1455,35 @@ a.tag:hover {
border-right-width: 0; border-right-width: 0;
margin-top: 15px; margin-top: 15px;
margin-bottom: 15px; margin-bottom: 15px;
.main-features {
margin-bottom: 94px;
}
} }
.col.supporter { .col.supporter {
width: 71%; width: 71%;
background-color: #F5F5F5; background-color: #F5F5F5;
border: 1px solid #E0E0E0; border: 1px solid #E0E0E0;
@include box-shadow(-1px 1px 5px 0px rgba(0,0,0,0.1)); @include box-shadow(-1px 1px 5px 0px rgba(0,0,0,0.1));
.col:first-child {
width: 40%;
}
.col:last-child {
width: 60%;
margin-top: 16px;
p {
font-weight: bold;
font-size: 100%;
color: #666;
}
}
}
.row.content.txt-Center {
margin-top: 0.6em;
} }
.btn-Action { .btn-Action {
margin-bottom: 1em; margin-bottom: 1em;
} }
.content {
padding: 20px 30px;
}
} }
} }
.section.bottom-signup { .section.bottom-signup {

View file

@ -15,7 +15,7 @@ You can support our quest to bring back the creative, independent web by upgradi
<div class="price">$<%= Site::PLAN_FEATURES[:free][:price] %></div> <div class="price">$<%= Site::PLAN_FEATURES[:free][:price] %></div>
<div class="interval">per month</div> <div class="interval">per month</div>
<ul> <ul class="main-features">
<li><strong><%= Site::PLAN_FEATURES[:free][:space].to_space_pretty %></strong> <span data-original-title="How much disk space you can use for your site. More space means you can upload more files.">storage</span></li> <li><strong><%= Site::PLAN_FEATURES[:free][:space].to_space_pretty %></strong> <span data-original-title="How much disk space you can use for your site. More space means you can upload more files.">storage</span></li>
<li><strong><%= Site::PLAN_FEATURES[:free][:bandwidth].to_space_pretty %></strong> <span data-original-title="How much content you can serve in one month. Dont worry—these are soft limits. Temporary surges are fine, we won't take your site down automatically, and we're very flexible.">bandwidth</span></li> <li><strong><%= Site::PLAN_FEATURES[:free][:bandwidth].to_space_pretty %></strong> <span data-original-title="How much content you can serve in one month. Dont worry—these are soft limits. Temporary surges are fine, we won't take your site down automatically, and we're very flexible.">bandwidth</span></li>
</ul> </ul>
@ -40,7 +40,7 @@ You can support our quest to bring back the creative, independent web by upgradi
<div class="interval">per month</div> <div class="interval">per month</div>
<% end %> <% end %>
<ul> <ul class="main-features">
<li><strong><%= Site::PLAN_FEATURES[:supporter][:space].to_space_pretty %></strong> <span data-original-title="How much disk space you can use for your site. More space means you can upload more files.">storage</span></li> <li><strong><%= Site::PLAN_FEATURES[:supporter][:space].to_space_pretty %></strong> <span data-original-title="How much disk space you can use for your site. More space means you can upload more files.">storage</span></li>
<li><strong>1000 GB</strong> <span data-original-title="How much content you can serve in one month. Dont worry—these are soft limits. Temporary surges are fine, we won't take your site down automatically, and we're very flexible.">bandwidth</span></li> <li><strong>1000 GB</strong> <span data-original-title="How much content you can serve in one month. Dont worry—these are soft limits. Temporary surges are fine, we won't take your site down automatically, and we're very flexible.">bandwidth</span></li>
</ul> </ul>
@ -50,7 +50,7 @@ You can support our quest to bring back the creative, independent web by upgradi
<li><span data-original-title="Make as many sites as you want with one account, and easily switch between them.">Unlimited Site Creation</span></li> <li><span data-original-title="Make as many sites as you want with one account, and easily switch between them.">Unlimited Site Creation</span></li>
<li><span data-original-title="Add your domain name (yoursite.com) to your site!">Custom Domain Support</span></li> <li><span data-original-title="Add your domain name (yoursite.com) to your site!">Custom Domain Support</span></li>
<li><span data-original-title="With WebDAV, you can mount your Neocities site to your computer as a hard drive, making it easy to update with your favorite HTML editor.">Remote Filesystem Support</span></li> <li><span data-original-title="With WebDAV, you can mount your Neocities site to your computer as a hard drive, making it easy to update with your favorite HTML editor.">Remote Filesystem Support</span></li>
<li><span data-original-title="Upload your SSL certificate for your custom domain name, preventing snoops from seeing your users traffic.">Custom SSL Certs (coming soon!)</span></li> <li><span data-original-title="Upload your SSL certificate for your custom domain name, preventing snoops from seeing your users traffic.">Custom SSL Certs (coming soon)</span></li>
</ul> </ul>
</div> </div>