fix user keys layout, adjust @media breakpoints to bs4, fix more unused css, optimize script

This commit is contained in:
Arvind Tiwari 2018-02-04 03:20:27 +05:30
commit 4ebd52cd69
6 changed files with 162 additions and 108 deletions

View file

@ -169,13 +169,13 @@
max-width: 1120px;
}
@media (max-width: 768px) {
@media (max-width: 767px) {
.content-dashboard {
padding: 0 15px;
}
}
@media (max-width: 540px) {
@media (max-width: 576px) {
select {
width: 280px;
}
@ -284,7 +284,7 @@
margin: 15px auto;
}
@media (min-width: 768px) and (max-width: 900px) {
@media (min-width: 768px) and (max-width: 991px) {
.modal-dialog {
width: 50%;
}
@ -296,7 +296,7 @@
}
}
@media(min-width: 320px) {
@media(min-width: 576px) {
.modal:before {
content: '';
display: inline-block;

View file

@ -215,7 +215,7 @@ textarea {
/* Show the dropdown menu on hover */
@media (min-width: 769px) {
@media (min-width: 768px) {
.nav-language .dropdown:hover .dropdown-menu {
display: block;
}
@ -769,7 +769,7 @@ tech-sub-sec h2 {
display: inline-block;
}
@media (max-width: 768px) {
@media (max-width: 767px) {
.ssdimg img {
width: 100px;
}
@ -884,7 +884,6 @@ tech-sub-sec h2 {
.price-calc-section .card .description span {
font-size: 16px;
margin-left: 4px;
margin-left: 0px;
width: 30%;
text-align: left;
@ -1002,7 +1001,7 @@ tech-sub-sec h2 {
}
}
@media screen and (min-width: 480px) and (max-width: 767px) {
@media (min-width: 576px) and (max-width: 767px) {
.logo-wrap, .logo-wrap-1 {
width: 50%;
padding: 15px 30px !important;
@ -1010,7 +1009,7 @@ tech-sub-sec h2 {
}
}
@media(max-width:990px) {
@media(max-width:991px) {
.pricing-section .text {
text-align: center;
margin-bottom: 40px;
@ -1174,7 +1173,7 @@ tech-sub-sec h2 {
}
}
@media(max-width:540px) {
@media(max-width:575px) {
.logo-wrap {
padding: 30px;
}
@ -1201,7 +1200,6 @@ tech-sub-sec h2 {
}
.price-calc-section .card .description span {
font-size: 15px;
margin-left: 0px;
}
}

View file

@ -1,8 +1,8 @@
from django.conf.urls import url
from .views import (
IndexView, BetaProgramView, LandingProgramView, BetaAccessView,
SuccessView, PaymentOrderView, OrderConfirmationView,
# BetaProgramView, SuccessView, LandingProgramView,
IndexView, BetaAccessView, PaymentOrderView, OrderConfirmationView,
WhyDataCenterLightView, ContactUsView
)