-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import style from "./style.module.css"; | ||
import { Credit } from "../../components/Credit/index"; | ||
|
||
|
||
function VidiptaSharmaAdobe() { | ||
// Enter your name, github url and art-name below | ||
let data = { | ||
name: "Vidipta Sharma", | ||
"gh-link": "https://www.github.com/Vidipta", | ||
"art-name": "Adobe Logo", | ||
}; | ||
return ( | ||
<div className={`${style.container} container`}> | ||
{/* DO NOT edit the line above*/} | ||
|
||
{/* your art blocks will come here */} | ||
<div id ={style.adobe}> | ||
<div className={style.adobe1}></div> | ||
<div className={style.adobe2}></div> | ||
<div className={style.adobe3}></div> | ||
</div> | ||
|
||
{/* do not edit the line below */} | ||
<Credit data={data} /> | ||
</div> | ||
); | ||
} | ||
|
||
export default VidiptaSharmaAdobe; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.container { | ||
background-color: red; | ||
} | ||
|
||
#adobe { | ||
height: 125px; | ||
overflow: hidden; | ||
position: relative; | ||
width: 146px; | ||
} | ||
|
||
#adobe * { | ||
position: absolute; | ||
} | ||
|
||
.adobe1, | ||
.adobe2, | ||
.adobe3 { | ||
background: #fff; | ||
} | ||
|
||
.adobe1 { | ||
height: 154px; | ||
left: 27px; | ||
top: -13px; | ||
transform: rotate(23deg); | ||
width: 35px; | ||
} | ||
|
||
.adobe2 { | ||
height: 154px; | ||
left: 81px; | ||
top: -13px; | ||
transform: rotate(-23deg); | ||
width: 35px; | ||
} | ||
|
||
.adobe3 { | ||
height: 25px; | ||
left: 31px; | ||
top: 100px; | ||
transform: skewx(22deg); | ||
width: 46px; | ||
} |