An Edu-Tech Consultancy We are providing Trending Educational & Technical content including Free Consultancy. Enjoy!
An Edu-Tech Consultancy We are providing Trending Educational & Technical content including Free Consultancy. Enjoy!
Motivate and Subscribe to us to getting notification about: WordPress, Technology, Computer Skills, Internship & job opportunities, and Digital marketing & Affiliations.
Motivate and Subscribe to us to getting notification about: WordPress, Technology, Computer Skills, Internship & job opportunities, and Digital marketing & Affiliations.
Founded By - Md Samir Uddin
* {
margin: 0;
padding: 0;
box-sizing: border-box;
} .main-container {
padding: 30px;
} /* CARDS */ .cards {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
} .card {
margin: 20px;
padding: 20px;
width: 300px;
height: 80px;
display: grid;
grid-template-rows: 20px 50px 1fr 50px;
border-radius: 10px;
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
transition: all 0.2s;
cursor: context-menu;
} .card:hover {
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
transform: scale(1.01);
} .card__title {
font-size: 22px;
text-align: center;
font-weight: 800;
color: #ffffff;
} /* CARD BACKGROUNDS */ .card-1 {
background: radial-gradient(#1fe4f5, #3fbafe);
} .card-2 {
background: radial-gradient(#fbc1cc, #fa99b2);
} .card-3 {
background: radial-gradient(#76b2fe, #b69efe);
} .card-4 {
background: radial-gradient(#60efbc, #58d5c9);
} .card-5 {
background: radial-gradient(#f588d8, #c0a3e5);
}
.card-6{
background: radial-gradient(#aa076b, #61045f);
font-size: 16px !important;
}
.card-7 {
background: radial-gradient(#ff7e5f, #feb47b);
}
.card-8 {
background: radial-gradient(#d66d75, #e29587);
}
.card-9 {
background: radial-gradient(#ff9966, #ff5e62);
}
/* RESPONSIVE */ @media (max-width: 1600px) {
.cards {
justify-content: center;
}
}