Skip to content

Commit

Permalink
registration form added and contact form updated
Browse files Browse the repository at this point in the history
  • Loading branch information
basil-reji committed Mar 26, 2023
1 parent 37069f7 commit b956ef3
Show file tree
Hide file tree
Showing 9 changed files with 297 additions and 258 deletions.
9 changes: 9 additions & 0 deletions public/javascripts/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
(function () {
"use strict";

// $("#circle").removeClass("rotate");
// $("#launcher").removeClass("launch");
// $("#loader").addClass("rotate");
// $("#launcher").addClass("launch");
// $("#body").removeClass("mask");
// $("#preloader").remove();
// $("#body").css({ "height": "auto", });
// $("#launchpad").css({ "display": "block", });
// $("#hero_text").css({ "opacity": "1", });
window.addEventListener('load', () => {
setTimeout(() => {
$("#circle").removeClass("rotate");
Expand Down
61 changes: 32 additions & 29 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ html::-webkit-scrollbar-thumb {
justify-content: center;
align-items: center;
background-color: #0c0c0c;
z-index: -1;
z-index: -10;
mask-image: url(#Layer_2);
}
#preloader #loader {
Expand Down Expand Up @@ -159,6 +159,8 @@ html::-webkit-scrollbar-thumb {
transition: all 2s;
}
#body.mask {
display: flex;
flex-direction: column;
clip-path: circle(0% at center);
}

Expand Down Expand Up @@ -229,33 +231,6 @@ html::-webkit-scrollbar-thumb {
color: #FC862B;
}

@media (max-width: 992px) {
#header .logo {
font-size: 1.3rem;
}
}
.get-started-btn {
color: #fff;
border-radius: 4px;
padding: 7px 25px 8px 25px;
white-space: nowrap;
transition: 0.3s;
font-size: 14px;
display: inline-block;
border: 2px solid #FC862B;
}

.get-started-btn:hover {
background: #ef7e28;
color: #020202;
}

@media (max-width: 992px) {
.get-started-btn {
padding: 7px 20px 8px 20px;
margin-right: 15px;
}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
Expand Down Expand Up @@ -474,6 +449,33 @@ html::-webkit-scrollbar-thumb {
display: block;
}

@media (max-width: 992px) {
#header .logo {
font-size: 1.3rem;
}
}
.get-started-btn {
color: #fff;
border-radius: 4px;
padding: 7px 25px 8px 25px;
white-space: nowrap;
transition: 0.3s;
font-size: 14px;
display: inline-block;
border: 2px solid #FC862B;
}

.get-started-btn:hover {
background: #ef7e28;
color: #020202;
}

@media (max-width: 992px) {
.get-started-btn {
padding: 7px 20px 8px 20px;
margin-right: 15px;
}
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
Expand Down Expand Up @@ -1423,7 +1425,8 @@ section {
}
}
.inner_main_page {
margin-top: 74px;
min-height: 80vh;
margin-top: 10vh;
}

/*--------------------------------------------------------------
Expand Down
Binary file removed scss.zip
Binary file not shown.
223 changes: 223 additions & 0 deletions scss/partials/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,229 @@
}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
padding: 0;
}

.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}

.navbar li {
position: relative;
}

.navbar a,
.navbar a:focus {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0 10px 30px;
font-size: 15px;
font-weight: 600;
color: $white;
white-space: nowrap;
transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: $color1;
}

.navbar .dropdown ul {
display: block;
position: absolute;
left: 14px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: $white;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
}

.navbar .dropdown ul li {
min-width: 200px;
}

.navbar .dropdown ul a {
padding: 10px 20px;
font-size: 14px;
text-transform: none;
color: $dark_color_1;
font-weight: 400;
}

.navbar .dropdown ul a i {
font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
background-color: $color1;
}

.navbar .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}

.navbar .dropdown .dropdown ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}

@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
left: -90%;
}

.navbar .dropdown .dropdown:hover>ul {
left: -100%;
}
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
color: $white;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}

@media (max-width: 991px) {
.mobile-nav-toggle {
display: block;
}

.navbar ul {
display: none;
}
}

.navbar-mobile {
position: fixed;
overflow: hidden;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
transition: 0.3s;
z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
position: absolute;
top: 15px;
right: 15px;
}

.navbar-mobile ul {
display: block;
position: absolute;
top: 55px;
right: 15px;
bottom: 15px;
left: 15px;
padding: 10px 0;
background-color: $white;
overflow-y: auto;
transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
padding: 10px 20px;
font-size: 15px;
color: $dark_color_1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: $dark_color_1;
background-color: $color1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
margin: 15px;
}

.navbar-mobile .dropdown ul {
position: static;
display: none;
margin: 10px 20px;
padding: 10px 0;
z-index: 99;
opacity: 1;
visibility: visible;
background: $white;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
min-width: 200px;
}

.navbar-mobile .dropdown ul a {
padding: 10px 20px;
color: $dark_color_1;
}

.navbar-mobile .dropdown ul a i {
font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
background-color: $color1;
}

.navbar-mobile .dropdown>.dropdown-active {
display: block;
}

@media (max-width: 992px) {
#header {
.logo {
Expand Down
4 changes: 3 additions & 1 deletion scss/partials/_preloader.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
justify-content: center;
align-items: center;
background-color: #0c0c0c;
z-index: -1;
z-index: -10;
mask-image: url(#Layer_2);;

#loader {
Expand Down Expand Up @@ -132,6 +132,8 @@
transition: all 2s;

&.mask{
display: flex;
flex-direction: column;
clip-path: circle(0% at center);
}
}
Loading

0 comments on commit b956ef3

Please sign in to comment.