Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.
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
5 changes: 5 additions & 0 deletions css/all.min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions css/font.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@font-face{
font-family: "Roboto";
src:"../fonts/Roboto/Roboto-Regular.ttf"
}
.menu{
width: 100%;
}
.NavPosition{
margin-right: auto;
}
99 changes: 99 additions & 0 deletions css/patials/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
.title-text{
font: normal bold 50px/ 72px var(--roboto);
}

.text-uppercase{
text-transform: uppercase;
}

/* Buttons */

.button{
padding: .8rem 2.2rem;
font: normal 500 16px/20px var(--roboto);
position: relative;
border: 3px solid transparent;
border-radius: 4px;
}

.button.primary-button{
background: var(--gradient-color);
background-clip: padding-box;
color: whitesmoke;
transition: background .6s ease;
box-shadow: var(--box-shadow);
}
.button.primary-button::after, .button.secondary-button::after{
position: absolute;
top: -2px; left: -2px;
bottom: -2px; right: -2px;
background: var(--gradient-color);
content: ' ';
z-index: -1;
border-radius: 4px;
}

.button.secondary-button{
background: white;
background-clip: padding-box;
transition: background .6s ease;
}

.button.secondary-button:hover{
background: var(--gradient-color);
color: whitesmoke;
box-shadow: var(--box-shadow);
}

.site-main .skill-area{
padding: 7rem 2rem;
}
.site-main .skill-area .container{



}

.site-main .skill-area .skill-title{
padding: 0 14rem;
}

.site-main .skill-area .skill-title h1{
font-size: 35px;
}

.site-main > .skill-area .skill{
background: rgba(248, 252, 253, 0.973);
padding: 2rem 0;
width: 16rem;
height: 20rem;
margin: 2rem .5rem;
transition: box-shadow .7s ease;

}

.site-main > .skill-area .skill:hover{
box-shadow: var(--box-shadow);
}

.site-main .project-area{
padding: 7rem 2rem;
}
.site-main .project{
padding: 7rem 2rem;
}
.navbar_fixed{
position: fixed;
width: 100%;
top: -1px;
left: 0; right: 0;
background: #ffffff;
box-shadow: var(--box-shadow);
z-index: 999;
transition: background 1s ease;
}





18 changes: 18 additions & 0 deletions css/patials/var.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
html,body{
margin:0%;
box-sizing: border-box;
width: 100%;
height: 100%;
}

:root{
--main-color:#4458dc;
--main-color2: #854fee;
--title-color: #141313;
--text-color: #777777;
--border-color: #201f1f17;
--gradient-color: linear-gradient(90deg, #4458dc 0%, #854fee 100%);
--shadow-color: 0px 10px 30px rgba(118, 85, 225, 0.3);
--box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.205);
--roboto: 'Roboto', sans-serif;
}
82 changes: 82 additions & 0 deletions css/responsive.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@

@media only screen and (max-width: 340px){
.header_area .main-menu .navbar,
.header_area .main-menu .navbar .navbar-brand,
.site-main .subscribe-us-area .subscribe .subscribe-title,
.site-main .subscribe-us-area .subscribe .subscribe-title p, h4,
.site-main .services-area
{
padding: 2%;
margin: 0%;
}

.site-main .site-banner .site-title h1{
font-size: 41px;
}

.site-main .subscribe-us-area .subscribe form .input-textbox input{
width: 15rem !important;
}

.site-main > .services-area .services{
width: 13rem;
}

}


/* if the viewport is equal to 340px or less than that */
@media only screen and (max-width: 792px){
.site-main .about-area .about-title h2 > span{
font-size: 31px;
letter-spacing: 10px;

}

.site-main .brand-area .experience-area .years-area{
padding-left: 1%;
width: 49%;
}

.site-main .brand-area .experience-area .bg-panel{
margin-left: 30%;
width: 80%;
}

.site-main .brand-area .experience-area .call-area{
padding-left: 3%;
}

.site-main .project-area .button-group button{
font: normal 500 18px/40px var(--roboto);
}
.site-main .about-area {
text-align: center;
}
.site-main .about-area .about-title p{
width: 100%;

}

}



/* if the viewport is equal to 1910px or less than that */
@media only screen and (max-width: 1910px){
.header_area .main-menu .navbar{
padding: 1rem;
}

.container{
max-width: 90%;
}

.site-main .brand-area,
.site-main .services-area .services-title,
.site-main .about-area{
padding: 3% 4%;
}


}
Loading