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

File Structure Optimization #854

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
File renamed without changes.
4 changes: 2 additions & 2 deletions assets/css/contactSection.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
box-shadow: 0 0 10px #f7b801 !important;
}
.contactSection {
background-image: url("/assets/img/one-yellow.png");
background-image: url("../img/one-yellow.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Expand Down Expand Up @@ -86,7 +86,7 @@
}

#contactSection {
background-image: url("./images/one.png");
background-image: url("../img/one.png");
height: 100vh !important;
width: 100vw !important;
}
Expand Down
File renamed without changes.
86 changes: 43 additions & 43 deletions Privacy Policy Page/policy.css → assets/css/policy.css
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman', Times, serif;
}
body{
background-color: #f9f9f9;
}
h4{
font-weight: 600 !important;
}
.heading{
height: 15vh;
width: 78vw !important;
margin-top: 5px;
padding: 20px;
text-align: center;
font-size: 40px;
background-color: #f63855d5;
color: white;
}
#two{
border: 2px solid grey;
background-color:#eb586944 ;
padding: 10px;
margin-left: 25px;
margin-right: 25px;
margin-top: 0;
}
@media(max-width:998px){
.heading{
font-size: 28px !important;
padding-top: 30px !important;
width: 70vw !important;
height: 15vh !important;
text-align: center;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman', Times, serif;
}

body{
background-color: #f9f9f9;
}

h4{
font-weight: 600 !important;
}

.heading{
height: 15vh;
width: 78vw !important;
margin-top: 5px;
padding: 20px;
text-align: center;
font-size: 40px;
background-color: #f63855d5;
color: white;
}
#two{
border: 2px solid grey;
background-color:#eb586944 ;
padding: 10px;
margin-left: 25px;
margin-right: 25px;
margin-top: 0;
}


@media(max-width:998px){
.heading{
font-size: 28px !important;
padding-top: 30px !important;
width: 70vw !important;
height: 15vh !important;
text-align: center;
}
}
29 changes: 21 additions & 8 deletions assets/css/responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,6 @@ left: 30px; */

/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
.container{
margin: 0 10px;
}
.navbar-brand img{
display: none;
}
.section-title {
font-size: 26px;
margin-bottom: 30px;
Expand All @@ -74,7 +68,6 @@ left: 30px; */
.navbar-expand-md .navbar-nav .nav-link {
margin-bottom: 0;
margin-top: 0;
font-size: 80%;
}
#about .sec-title h3 {
font-size: 30px;
Expand Down Expand Up @@ -147,7 +140,6 @@ left: 30px; */
.navbar-expand-md .navbar-nav .nav-link {
margin-bottom: 0;
margin-top: 0;
padding: 5px 50%;
}
.navbar-brand img {
margin: 5px 0;
Expand Down Expand Up @@ -242,6 +234,27 @@ left: 30px; */
}
}

@media (max-width: 451px){
.img_container{
margin: 0px auto !important;
}
.box1,.box4{
margin-top: 20px !important;
margin-bottom: 30px !important;
}
.box3{
margin: 40px auto !important;
}
.box2,.box5{
margin-top: 30px !important;
margin-bottom: 20px !important;
}
.box6{
margin-top: 30px !important;
margin-bottom: 30px !important;
}
}

@media (min-width: 151px) and (max-width: 350px) {
.swiper-slide {
min-width: 100%;
Expand Down
File renamed without changes.
Loading