<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<div class="card-container-wrapper">
<div class="cards">
<div class="card">
<div class="card-header">
<span>
<span class="material-symbols-outlined">
person_filled
</span>
<small>1.234</small>
</span>
<a href="#">Follow</a>
</div>
<div class="card-profile">
<div class="name">
<h4>Mike Smith</h4>
<small>Backend Developer</small>
</div>
<div class="card-img">
<img src="https://images.unsplash.com/photo-1542909168-82c3e7fdca5c?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=100&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTYzMzM0Nzc2Mw&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=100" alt="Profile">
</div>
</div>
<div class="card-body">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor</p>
</div>
<h1 class="initials">MS</h1>
<a href="#" class="btn">
<span class="material-symbols-outlined">
arrow_forward
</span>
</a>
</div>
<div class="card">
<div class="card-header">
<span>
<span class="material-symbols-outlined">
person_filled
</span>
<small>1.234</small>
</span>
<a href="#">Follow</a>
</div>
<div class="card-profile">
<div class="name">
<h4>Mike Smith</h4>
<small>Backend Developer</small>
</div>
<div class="card-img">
<img src="https://images.unsplash.com/photo-1542909168-82c3e7fdca5c?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=100&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTYzMzM0Nzc2Mw&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=100" alt="Profile">
</div>
</div>
<div class="card-body">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor</p>
</div>
<h1 class="initials">MS</h1>
<a href="#" class="btn">
<span class="material-symbols-outlined">
arrow_forward
</span>
</a>
</div>
<div class="card">
<div class="card-header">
<span>
<span class="material-symbols-outlined">
person_filled
</span>
<small>1.234</small>
</span>
<a href="#">Follow</a>
</div>
<div class="card-profile">
<div class="name">
<h4>Mike Smith</h4>
<small>Backend Developer</small>
</div>
<div class="card-img">
<img src="https://images.unsplash.com/photo-1542909168-82c3e7fdca5c?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=100&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTYzMzM0Nzc2Mw&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=100" alt="Profile">
</div>
</div>
<div class="card-body">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor</p>
</div>
<h1 class="initials">MS</h1>
<a href="#" class="btn">
<span class="material-symbols-outlined">
arrow_forward
</span>
</a>
</div>
<div class="card">
<div class="card-header">
<span>
<span class="material-symbols-outlined">
person_filled
</span>
<small>1.234</small>
</span>
<a href="#">Follow</a>
</div>
<div class="card-profile">
<div class="name">
<h4>Mike Smith</h4>
<small>Backend Developer</small>
</div>
<div class="card-img">
<img src="https://images.unsplash.com/photo-1542909168-82c3e7fdca5c?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=100&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTYzMzM0Nzc2Mw&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=100" alt="Profile">
</div>
</div>
<div class="card-body">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor</p>
</div>
<h1 class="initials">MS</h1>
<a href="#" class="btn">
<span class="material-symbols-outlined">
arrow_forward
</span>
</a>
</div>
</div>
</div>
</body>
body {
width: 100%;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
vertical-align: center;
}
.card-container-wrapper {
margin: auto;
width: 100%;
height: 100%;
}
.card-container-wrapper .cards {
font-family: Monserrat, sans-serif;
min-height 100%;
background: linear-gradient(0deg, #dee0e2 0%, #748394 100%);
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
.card-container-wrapper .cards .card{
background: linear-gradient(45deg, #252a3f 0%, #131522 100%);
width: 320px;
min-height: 320px;
border-radius: 130px 5px 80px 5px;
color: #fff;
position: relative;
margin: 35px 18px;
box-shadow: 0 0 40px #1f1f1f;
}
.card-container-wrapper .cards .card-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 18px 12px 90px;
}
.card-container-wrapper .cards .card a {
color: #fff;
text-decoration: none;
}
.card-container-wrapper .cards .card-profile {
display: flex;
justify-content: space-between;
align-items: center;
min-height: 42px;
}
.card-container-wrapper .cards .card img {
width: 60px;
height: 60px;
border-radius: 50%;
position: absolute;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 3px solid #1f1f1f;
}
.card-container-wrapper .cards .card-img {
background: linear-gradient(45deg, #a544ff 0%, #5d2cfe 100%);
border-radius: 50%;
width: 70px;
height: 70px;
position: absolute;
right: -20px;
top: 110px;
transform: translate(-50%, -50%);
}
.card-container-wrapper .cards .name {
position: absolute;
left: -10px;
top: 85px;
padding: 8px 40px;
border-radius: 5px 40px 5px 40px;
color: #131522;
background: #eef0f2;
box-shadow: 15px 5px 25px #101010;
}
.card-container-wrapper .cards .card-profile h4 {
margin: 0;
}
.card-container-wrapper .cards .card-body {
padding: 40px 18px 10px;
margin-bottom: 10px;
}
.card-container-wrapper .cards .card-body p {
letter-spacing: 2px;
font-size: 18px;
line-height: 30px;
position: relative;
z-index: 1;
}
.card-container-wrapper .cards .initials {
color: #2c314a;
font-size: 100px;
position: absolute;
margin: 0;
bottom: 0;
left: 4px;
z-index: 0;
}
.card-container-wrapper .cards .card .btn {
position: absolute;
bottom: -18px;
right: 50px;
padding: 18px;
background: linear-gradient(45deg, #a544ff 0%, #5d2cfe 100%);
border-radius: 5px 5px 40px 5px;
box-shadow: 0 0 15px #a544ff;
transition: 0.4s;
}
.card-container-wrapper .cards .card .btn:hover {
transform: translateY(-8px);
}
/* Individual Colors */
.card-container-wrapper .cards .card:nth-child(2) .btn,
.card-container-wrapper .cards .card:nth-child(2) .card-img
{
background: linear-gradient(to right, #00f260, #0575e6);
}
.card-container-wrapper .cards .card:nth-child(2) .btn {
box-shadow: 0 0 15px #0575e6;
}
.card-container-wrapper .cards .card:nth-child(3) .btn,
.card-container-wrapper .cards .card:nth-child(3) .card-img
{
background: linear-gradient(to right, #fdfc47, #24fe41);
}
.card-container-wrapper .cards .card:nth-child(3) .btn {
box-shadow: 0 0 15px #24fe41;
}
.card-container-wrapper .cards .card:nth-child(4) .btn,
.card-container-wrapper .cards .card:nth-child(4) .card-img
{
background: linear-gradient(to right, #ff416c, #ff4b2b);
}
.card-container-wrapper .cards .card:nth-child(4) .btn {
box-shadow: 0 0 15px #ff4b2b;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.