Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

purge: pricing + subscribe page #6397

Merged
merged 2 commits into from
Apr 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,6 @@
# brochureware views
re_path(r'^home/?$', retail.views.index, name='home'),
re_path(r'^landing/?$', retail.views.index, name='landing'),
re_path(r'^pricing/$', retail.views.pricing, name='pricing'),
re_path(r'^subscribe/$', retail.views.subscribe, name='subscribe'),
re_path(r'^about/?', retail.views.about, name='about'),
re_path(r'^mission/?', retail.views.mission, name='mission'),
re_path(r'^jobs/?', retail.views.jobs, name='jobs'),
Expand Down
99 changes: 0 additions & 99 deletions app/assets/v2/css/retail/plans.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
.navbar-network {
position: relative;
bottom: -9px;
}

nav,
.banner {
background-color: #0D0764;
}

.nav #logo:hover {
background-color: #0D0764;
}

.banner {
color: #fff;
min-height: 10rem;
}

.plan {
border-radius: 3px;
transition: box-shadow .25s ease-out,border-color .25s ease-out;
Expand All @@ -33,7 +14,6 @@ nav,
color: #4A4A4A;
}

.price span.month,
.plan-header h2 span.month,
.plan-header p {
font-size: 1rem;
Expand All @@ -44,11 +24,6 @@ nav,
font-size: 2rem;
}

.period {
display: flex;
justify-content: center;
}

.discount {
color: limegreen;
font-weight: 600;
Expand All @@ -73,17 +48,6 @@ nav,
color: #cacaca;
}

.companies {
display: flex;
justify-content: center;
}

.companies img {
height: 5rem;
width: auto;
margin: auto;
}

.plan-button .button--full {
color: #fff !important;
padding: .75rem 1.5rem;
Expand Down Expand Up @@ -119,70 +83,7 @@ nav,
transform: rotate(45deg);
}

/* Subscribe */
.step {
margin-top: 1.5rem;
border-bottom: 1px solid #ccc;
}

.step.row {
margin-left: 0 !important;
margin-right:0 !important;
padding-bottom: 1rem;
}

.step h2 {
font-size: 1.25rem;
color: #4A4A4A
}

.step p {
color: #4A4A4A;
}

.billed {
display: flex;
}

#bill-period {
max-width: 6rem;
}

#bill-period .select2-selection.select2-selection--single {
border: 0 !important;
outline: 0;
}

.save-more {
animation-name: fadeIn;
animation-duration: .5s;
}

@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

.summary p {
margin: 0 0 4px;
}

.summary i {
font-size: 6px;
position: relative;
bottom: 2px;
}

#primary_form {
max-width: none;
}

@media (max-width: 576px) {
#primary_form {
padding-left: 10px;
padding-right: 10px;
}

.plan-info {
text-align: center !important;
}
Expand Down
3 changes: 0 additions & 3 deletions app/assets/v2/js/lib/animate-number.min.js

This file was deleted.

2 changes: 1 addition & 1 deletion app/dashboard/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@
from pytz import UTC
from ratelimit.decorators import ratelimit
from retail.helpers import get_ip
from townsquare.models import Comment
from web3 import HTTPProvider, Web3

from townsquare.models import Comment
from .export import (
ActivityExportSerializer, BountyExportSerializer, CustomAvatarExportSerializer, GrantExportSerializer,
ProfileExportSerializer, filtered_list_data,
Expand Down
35 changes: 0 additions & 35 deletions app/retail/templates/pricing/nav.html

This file was deleted.

145 changes: 0 additions & 145 deletions app/retail/templates/pricing/plans.html

This file was deleted.

Loading