Browse Source

UI changes and files replacements.

master
navaneeth-webtrigon 6 years ago
parent
commit
32f41d171d
14 changed files with 1004 additions and 545 deletions
  1. +1
    -1
      home/models.py
  2. +586
    -429
      static/css/home.css
  3. +105
    -0
      static/css/loans.css
  4. +73
    -0
      static/css/others.css
  5. +76
    -55
      static/css/service.css
  6. BIN
      static/files/deposit-scheme.pdf
  7. BIN
      static/files/loans.pdf
  8. +90
    -0
      static/scss/loans.scss
  9. +52
    -0
      static/scss/others.scss
  10. +2
    -2
      templates/about.html
  11. +4
    -23
      templates/deposit.html
  12. +7
    -7
      templates/home.html
  13. +6
    -6
      templates/loans.html
  14. +2
    -22
      templates/others.html

+ 1
- 1
home/models.py View File

@@ -1,3 +1,3 @@
from django.db import models from django.db import models


# Create your models here.

+ 586
- 429
static/css/home.css
File diff suppressed because it is too large
View File


+ 105
- 0
static/css/loans.css View File

@@ -0,0 +1,105 @@
@font-face {
src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
font-family: archivo-black;
font-style: normal;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
font-family: open-sans;
font-weight: bolder;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
font-family: open-sans;
font-weight: bold;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
font-family: open-sans;
font-style: normal;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
font-family: open-sans;
font-weight: normal;
font-style: italic;
}
.banner {
height: 30vh;
background-image: url("../images/cover-image.jpg");
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
position: relative;
}
.banner:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
background-color: rgba(64, 62, 65, 0.6);
}
.banner h3 {
text-align: center;
align-self: center;
font-size: 36px;
color: white;
z-index: 1;
}

.service-content {
width: 90%;
margin: 60px auto;
display: flex;
justify-content: space-between;
}
.service-content .scene-container {
overflow: hidden;
width: 70%;
background-color: #f0f0f0;
min-height: 70vh;
}
.service-content object {
overflow-x: hidden;
display: none;
width: 100%;
height: 100%;
}
.service-content object.active {
display: block;
}
@media screen and (max-width: 1024px) {
.service-content object.active {
display: none;
}
}
.service-content iframe {
display: none;
}
@media screen and (max-width: 1024px) {
.service-content iframe.active {
display: block;
}
}
.service-content ul {
width: 25%;
}
.service-content ul li {
list-style: none;
padding: 10% 0;
border-bottom: 2px solid white;
text-align: center;
cursor: pointer;
background-color: #fcfcfc;
color: #808285;
}
.service-content ul li.active {
background-color: #28aae2;
color: white;
}
.service-content ul li:last-child {
border-bottom: none;
}

/*# sourceMappingURL=loans.css.map */

+ 73
- 0
static/css/others.css View File

@@ -0,0 +1,73 @@
@font-face {
src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
font-family: archivo-black;
font-style: normal;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
font-family: open-sans;
font-weight: bolder;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
font-family: open-sans;
font-weight: bold;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
font-family: open-sans;
font-style: normal;
}
@font-face {
src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
font-family: open-sans;
font-weight: normal;
font-style: italic;
}
.banner {
height: 30vh;
background-image: url("../images/cover-image.jpg");
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
position: relative;
}
.banner:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
background-color: rgba(64, 62, 65, 0.6);
}
.banner h3 {
text-align: center;
align-self: center;
font-size: 36px;
color: white;
z-index: 1;
}

.service-content {
width: 90%;
margin: 60px auto;
display: flex;
min-height: 42vh;
justify-content: space-between;
}
.service-content ul {
width: 100%;
display: flex;
justify-content: space-between;
align-self: flex-start;
}
.service-content ul li {
list-style: none;
padding: 30px;
text-align: center;
cursor: pointer;
background-color: #fcfcfc;
color: #808285;
}

/*# sourceMappingURL=others.css.map */

+ 76
- 55
static/css/service.css View File

@@ -1,24 +1,29 @@
@font-face { @font-face {
src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype"); src: url("fonts/Archivo_Black/ArchivoBlack-Regular.ttf") format("truetype");
font-family: archivo-black; font-family: archivo-black;
font-style: normal; }
font-style: normal;
}
@font-face { @font-face {
src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype"); src: url("fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
font-family: open-sans; font-family: open-sans;
font-weight: bolder; }
font-weight: bolder;
}
@font-face { @font-face {
src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype"); src: url("fonts/Open_Sans/OpenSans-SemiBold.ttf") format("truetype");
font-family: open-sans; font-family: open-sans;
font-weight: bold; }
font-weight: bold;
}
@font-face { @font-face {
src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype"); src: url("fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
font-family: open-sans; font-family: open-sans;
font-style: normal; }
font-style: normal;
}
@font-face { @font-face {
src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype"); src: url("fonts/Open_Sans/OpenSans-LightItalic.ttf") format("truetype");
font-family: open-sans; font-family: open-sans;
font-weight: normal; font-weight: normal;
font-style: italic; }
font-style: italic;
}
.banner { .banner {
height: 30vh; height: 30vh;
background-image: url("../images/cover-image.jpg"); background-image: url("../images/cover-image.jpg");
@@ -26,61 +31,77 @@
background-repeat: no-repeat; background-repeat: no-repeat;
display: flex; display: flex;
justify-content: center; justify-content: center;
position: relative; }
.banner:after {
content: '';
width: 100%;
height: 100%;
position: absolute;
background-color: rgba(64, 62, 65, 0.6); }
.banner h3 {
text-align: center;
align-self: center;
font-size: 36px;
color: white;
z-index: 1; }
position: relative;
}
.banner:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
background-color: rgba(64, 62, 65, 0.6);
}
.banner h3 {
text-align: center;
align-self: center;
font-size: 36px;
color: white;
z-index: 1;
}


.service-content { .service-content {
width: 90%; width: 90%;
margin: 60px auto; margin: 60px auto;
display: flex; display: flex;
justify-content: space-between; }
.service-content .scene-container {
overflow: hidden;
width: 70%;
background-color: #f0f0f0; }
.service-content object {
overflow-x: hidden;
justify-content: space-between;
}
.service-content .scene-container {
overflow: hidden;
width: 70%;
background-color: #f0f0f0;
}
.service-content object {
overflow-x: hidden;
display: none;
width: 100%;
height: 100%;
}
.service-content object.active {
display: block;
}
@media screen and (max-width: 1024px) {
.service-content object.active {
display: none; display: none;
width: 100%;
height: 100%; }
.service-content object.active {
display: block; }
@media screen and (max-width: 1024px) {
.service-content object.active {
display: none; } }
.service-content iframe {
display: none; }
@media screen and (max-width: 1024px) {
.service-content iframe.active {
display: block; } }
.service-content ul {
width: 25%;
display: flex;
flex-direction: column;
justify-content: space-evenly; }
.service-content ul li {
list-style: none;
padding: 10% 0;
border-bottom: 2px solid white;
text-align: center;
cursor: pointer;
background-color: #fcfcfc;
color: #808285; }
.service-content ul li.active {
background-color: #28aae2;
color: white; }
.service-content ul li:last-child {
border-bottom: none; }
}
}
.service-content iframe {
display: none;
}
@media screen and (max-width: 1024px) {
.service-content iframe.active {
display: block;
}
}
.service-content ul {
width: 25%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.service-content ul li {
list-style: none;
padding: 10% 0;
border-bottom: 2px solid white;
text-align: center;
cursor: pointer;
background-color: #fcfcfc;
color: #808285;
}
.service-content ul li.active {
background-color: #28aae2;
color: white;
}
.service-content ul li:last-child {
border-bottom: none;
}


/*# sourceMappingURL=service.css.map */ /*# sourceMappingURL=service.css.map */

BIN
static/files/deposit-scheme.pdf View File


BIN
static/files/loans.pdf View File


+ 90
- 0
static/scss/loans.scss View File

@@ -0,0 +1,90 @@
@import '_colors';
@import 'custom_fonts';

.banner {
height: 30vh;
background-image: url('../images/cover-image.jpg');
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
position: relative;

&:after {
content: '';
width: 100%;
height: 100%;
position: absolute;
background-color: rgba($color: $dark_brown, $alpha: 0.6)
}

h3 {
text-align: center;
align-self: center;
font-size: $heading_size;
color: white;
z-index: 1;
}
}

.service-content {
width: 90%;
margin: 60px auto;
display: flex;
justify-content: space-between;

.scene-container {
overflow: hidden;
width: 70%;
background-color: $lightest_gray;
min-height: 70vh;
}

object {
overflow-x: hidden;
display: none;
width: 100%;
height: 100%;

&.active {
display: block;

@media screen and (max-width: 1024px) {
display: none;
}
}
}

iframe {
display: none;

@media screen and (max-width: 1024px) {
&.active {
display: block;
}
}
}

ul {
width: 25%;

li {
list-style: none;
padding: 10% 0;
border-bottom: 2px solid white;
text-align: center;
cursor: pointer;
background-color: #fcfcfc;
color: #808285;

&.active {
background-color: $blue;
color: white;
}

&:last-child {
border-bottom: none;
}
}
}
}

+ 52
- 0
static/scss/others.scss View File

@@ -0,0 +1,52 @@
@import '_colors';
@import 'custom_fonts';

.banner {
height: 30vh;
background-image: url('../images/cover-image.jpg');
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
position: relative;

&:after {
content: '';
width: 100%;
height: 100%;
position: absolute;
background-color: rgba($color: $dark_brown, $alpha: 0.6)
}

h3 {
text-align: center;
align-self: center;
font-size: $heading_size;
color: white;
z-index: 1;
}
}

.service-content {
width: 90%;
margin: 60px auto;
display: flex;
min-height: 42vh;
justify-content: space-between;

ul {
width: 100%;
display: flex;
justify-content: space-between;
align-self: flex-start;

li {
list-style: none;
padding: 30px;
text-align: center;
cursor: pointer;
background-color: #fcfcfc;
color: #808285;
}
}
}

+ 2
- 2
templates/about.html View File

@@ -25,7 +25,7 @@
Bank of India (RBI) and started its transaction on 27.03.1975. It is Bank of India (RBI) and started its transaction on 27.03.1975. It is
registered under Karnataka Co-operative society's act 1959 and is registered under Karnataka Co-operative society's act 1959 and is
governed by guideline of RBI issued from time to time. This bank served governed by guideline of RBI issued from time to time. This bank served
for 43 - 44 years and is stepping towards its 39th years. This bank was graded
for 43 - 44 years and is stepping towards its 45th years. This bank was graded
'A' by RBI for providing quality services and facilities to its members. 'A' by RBI for providing quality services and facilities to its members.
</p> </p>
</div> </div>
@@ -43,7 +43,7 @@
<li>Fully computerized services in all branches.</li> <li>Fully computerized services in all branches.</li>
<li>Safe deposit locker facility available.</li> <li>Safe deposit locker facility available.</li>
<li>Deposits up to Rs 100000/- covered under DICGC.</li> <li>Deposits up to Rs 100000/- covered under DICGC.</li>
<li>Higher rate of interest of 21% on term deposits for senior citizens.</li>
<li>Higher rate of interest of 0.5% on term deposits for senior citizens.</li>
<li>Immovable property loans for constructions purchase of property <li>Immovable property loans for constructions purchase of property
purchase of site/house/flat, marriage, repayment of debts, higher purchase of site/house/flat, marriage, repayment of debts, higher
education and business. education and business.


+ 4
- 23
templates/deposit.html View File

@@ -2,7 +2,7 @@
{% load staticfiles %} {% load staticfiles %}


{% block stylesheets %} {% block stylesheets %}
<link rel="stylesheet" href="{% static 'css/service.css' %}">
<link rel="stylesheet" href="{% static 'css/loans.css' %}">
{% endblock stylesheets %} {% endblock stylesheets %}


{% block content %} {% block content %}
@@ -11,30 +11,11 @@
</section> </section>
<section class="service-content"> <section class="service-content">
<ul class="side-content"> <ul class="side-content">
<li data-tab = "sales" class="active">Saving Account</li>
<li data-tab = "financial">Current Account</li>
<li data-tab = "investment">Term Deposit</li>
<li data-tab = "tax">Advisory Services on deposit</li>
<li data-tab = "loan">Nomination Facility</li>
<li data-tab = "sales" class="active">Deposit Schemes</li>
</ul> </ul>
<div class="scene-container"> <div class="scene-container">
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/deposits.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/deposits.pdf' %}" type="application/pdf" />
<object data="{% static 'files/deposit-scheme.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/deposit-scheme.pdf' %}" type="application/pdf" />
</object> </object>
</div> </div>
</section> </section>


+ 7
- 7
templates/home.html View File

@@ -294,14 +294,14 @@
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam. dolore magna aliqua. Ut enim ad minim veniam.
</p> --> </p> -->
<form>
<form method="POST">
<fieldset> <fieldset>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email ID">
<input type="tel" placeholder="Phone">
<input type="text" placeholder="Subject">
<textarea name="message" rows="6" placeholder="Your Message..."></textarea>
<button type="button">Send</button>
<input type="text" placeholder="Name" name="name" required>
<input type="email" placeholder="Email ID" name="email" required>
<input type="tel" placeholder="Phone" name="phone">
<input type="text" placeholder="Subject" name="subject" required>
<textarea name="message" rows="6" placeholder="Your Message..." name="message" required></textarea>
<button type="button" id="contact-button">Send</button>
</fieldset> </fieldset>
</form> </form>
</section> </section>


+ 6
- 6
templates/loans.html View File

@@ -2,7 +2,7 @@
{% load staticfiles %} {% load staticfiles %}


{% block stylesheets %} {% block stylesheets %}
<link rel="stylesheet" href="{% static 'css/service.css' %}">
<link rel="stylesheet" href="{% static 'css/loans.css' %}">
{% endblock stylesheets %} {% endblock stylesheets %}


{% block content %} {% block content %}
@@ -11,19 +11,19 @@
</section> </section>
<section class="service-content"> <section class="service-content">
<ul class="side-content"> <ul class="side-content">
<li data-tab = "home" class="active">Home Loan</li>
<li data-tab = "sales">Mortage Loan</li>
<li data-tab = "home" class="active">Loans &amp; Advances</li>
<!-- <li data-tab = "sales">Mortage Loan</li>
<li data-tab = "financial">Consumption Loan</li> <li data-tab = "financial">Consumption Loan</li>
<li data-tab = "investment">Jewellery Loan</li> <li data-tab = "investment">Jewellery Loan</li>
<li data-tab = "tax">Overdraft</li> <li data-tab = "tax">Overdraft</li>
<li data-tab = "loan">Personal Loan</li> <li data-tab = "loan">Personal Loan</li>
<li data-tab = "consultant">Vehicle Loan</li>
<li data-tab = "consultant">Vehicle Loan</li> -->
</ul> </ul>
<div class="scene-container"> <div class="scene-container">
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "home"> <object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "home">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" /> <embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object> </object>
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<!-- <object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" /> <embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object> </object>
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial"> <object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
@@ -40,7 +40,7 @@
</object> </object>
<object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant"> <object data="{% static 'files/loans.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/loans.pdf' %}" type="application/pdf" /> <embed src="{% static 'files/loans.pdf' %}" type="application/pdf" />
</object>
</object> -->
</div> </div>
</section> </section>
{% endblock content %} {% endblock content %}


+ 2
- 22
templates/others.html View File

@@ -2,7 +2,7 @@
{% load staticfiles %} {% load staticfiles %}


{% block stylesheets %} {% block stylesheets %}
<link rel="stylesheet" href="{% static 'css/service.css' %}">
<link rel="stylesheet" href="{% static 'css/others.css' %}">
{% endblock stylesheets %} {% endblock stylesheets %}


{% block content %} {% block content %}
@@ -11,31 +11,11 @@
</section> </section>
<section class="service-content"> <section class="service-content">
<ul class="side-content"> <ul class="side-content">
<li data-tab = "sales" class="active">Real Time Gross Settlement (RTGS)</li>
<li data-tab = "sales">Real Time Gross Settlement (RTGS)</li>
<li data-tab = "financial">Electronic Fund Transfer (EFT)</li> <li data-tab = "financial">Electronic Fund Transfer (EFT)</li>
<li data-tab = "investment">National Electronic Fund Transfer (NEFT)</li> <li data-tab = "investment">National Electronic Fund Transfer (NEFT)</li>
<li data-tab = "tax">Safety Loacker</li> <li data-tab = "tax">Safety Loacker</li>
</ul> </ul>
<div class="scene-container">
<!-- <object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object> -->
</div>
</section> </section>
{% endblock content %} {% endblock content %}




Loading…
Cancel
Save