Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made Aarogya Setu logo #96

Merged
merged 5 commits into from Apr 7, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/art/ShridharAarogyaSetu/ShridharAarogyaSetu.jsx
@@ -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
@@ -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;
}