Skip to content
Open
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
60 changes: 53 additions & 7 deletions how-to-project/public/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,14 @@ font-size: 16px;
margin-left: 5%;
margin-top: -10px;
}
.mainImg{
width:100%;
object-fit: cover;
}
@media ( min-width: 1000px){
.mainImg{ width: 180%;
}
}

/* .home-section-1 .mainImg{
position: absolute;
Expand Down Expand Up @@ -317,6 +325,19 @@ border: 2px solid rgba(222, 229, 238, 0.58);
width: 1354px;
height: 367px;
}
@media (max-width: 1031px) {
.frames{
flex-direction: column;
margin: 10px;
height:auto;
align-items: center;
justify-content: left;
padding: relative;
margin-left: auto;
width:100%;
margin-right: auto;
}
}
.team-frames {
display: flex;
flex-wrap: wrap;
Expand Down Expand Up @@ -424,10 +445,15 @@ font-family: 'Ubuntu', sans-serif;

.card-main {
/* margin: 3rem 3rem 0 3rem; */
width: 418px !important;
height: 367px !important;
width: 418px ;
height: 367px ;
}
@media (max-width: 1030px) {
.card-main{
width: 80%;
box-sizing:border-box;
}
}

.card {
width: 418px !important;
height: 367px !important;
Expand Down Expand Up @@ -495,7 +521,7 @@ align-items: center;
/* padding: 15px 20px; */
/* gap: 640px; */

width: 700px;
width: 50%;
height: 45px;
left: 330px;
top: 100px;
Expand Down Expand Up @@ -524,10 +550,30 @@ border-radius: 5px;
.search-icon:hover{
box-shadow: 10px 5px 40px none;
}
@media screen and (max-width: 970px){
@media screen and (max-width:412px) {
.search-bar{
width:90%;
left: 2%;
}
/* .search-icon{
left:540px;
} */
}

@media screen and (min-width:412px) and (max-width: 750px){
.search-bar{
width:90%;
left: 10%;
}
.search-icon{
left:540px;
}
}

@media screen and (min-width : 750px) and (max-width: 909px){
.search-bar{
width:375px ;
left: 200px;
width:50%;
left: 20%;
}
.search-icon{
left:540px;
Expand Down