Skip to content

Commit

Permalink
Merge pull request #249 from nisargaa20/home-scroll
Browse files Browse the repository at this point in the history
[Bug]: Home page scroll #246
  • Loading branch information
AbhiDiva96 authored Jun 30, 2024
2 parents 2f6aea8 + 4d0559c commit e94650d
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions src/components/page3/1Year.css
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
.title{
display: flex;
justify-content: center;

.title {
display: flex;
justify-content: center;
}
.content{

.content {
height: auto;
}
.background{

.background {
margin: 20px 15px;

border-radius: 10px;

box-shadow: 5px 5px 10px #bebebe;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 50vh;
margin-bottom: 10px;

.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-bottom: 10px;
}
.link{

.link {
text-decoration: none;
font-size: 1.5rem;
font-weight: 300;
}

.card {
width: 250px;
padding: 50px 0px;
margin: 10px;
border-radius: 20px;

box-shadow: 5px 5px 10px #383232;

height: 100px;
}

.card img{
width: 64px;
width: 250px;
padding: 50px 0px;
margin: 10px;
height: 70px;
border-radius: 20px;
box-shadow: 5px 5px 10px #383232;

}

.card img {
width: 64px;
}

/* Mobile device viewers */
@media only screen and (max-width: 767px) {
.card {
width: calc(100% - 20px);
}
}

/* mobile device viewers */
@media only screen and(max-width: 767px) {
.card{
width: calc(100% - 20px);
}
/* Tablets viewer */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
.card {
width: calc(50% - 20px);
}
/* tablets viewer */


/* laptop and large screen viwer*/
@media only screen and (min-width: 1024px){
.card{
width: calc(50%-20px);

}

}


}

/* Laptop and large screen viewers */
@media only screen and (min-width: 1024px) {
.card {
width: calc(33.3333% - 20px);
}
}

0 comments on commit e94650d

Please sign in to comment.