Skip to content
Merged
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
27 changes: 27 additions & 0 deletions src/art/ShridharAarogyaSetu/ShridharAarogyaSetu.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import style from "./style.module.css";
import { Credit } from "../../components/Credit/index";

function ShridharAarogyaSetu() {
let data = {
name: "Shridhar Kamat",
"gh-link": "https://github.com/Shridhar-dev/",
"art-name": "Aarogya Setu logo",
};

return (
<div className={`${style.container} container`}>
{/* do not edit the className above*/}

{/* your art blocks will come here */}

<div className={style.main}>
<div className={style.heartmid}></div>
<div className={style.tick}></div>
</div>
{/* do not edit line below */}
<Credit data={data} />
</div>
);
}

export default ShridharAarogyaSetu;
70 changes: 70 additions & 0 deletions src/art/ShridharAarogyaSetu/style.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@

.container{
background-color: white;
display:flex;
justify-content:center;
align-items:center;
}
.heartmid{
position:relative;
width:120px;
height:120px;
background-color:#fa7a19;
transform:rotate(-45deg)
}
.heartmid::after{
content:'';
position:absolute;
top:-50%;
width:120px;
height:120px;
border-radius:50%;
background-color:#fa7a19;
}
.heartmid::before{
content:'';
position:absolute;
left:50%;
width:120px;
height:120px;
border-radius:50%;
background-color:#fa7a19;
}
.tick{
position:absolute;
top:45.6%;
left:10.5%;
height:80%;
width:55%;
transform:rotate(-45deg);
background-color:#019443;
border-radius:50px 50px 0px 0px;
border:20px solid white;
}
.tick::after{
content:'';
position:absolute;
top:-17%;
left:100%;
height:140%;
width:100%;
transform:rotate(91deg);
background-color:#019443;
border-radius:50px 50px 0px 0px;
border:20px solid white;
}
.tick::before{
content:'';
z-index:10;
position:absolute;
top:21%;
left:0%;
height:90%;
width:101%;
transform:rotate(0deg);
background-color:#019443;

}
.main{
position:relative;
}