This commit is contained in:
codepupper 2019-12-09 16:25:58 +01:00
parent 98120b7962
commit 04376963a3
12 changed files with 103 additions and 0 deletions

21
assets/css/artwork.css Normal file
View file

@ -0,0 +1,21 @@
.XX {
position: relative;
width: 100px;
height: 100px;
border: 1px solid red;
}
.imageOne {
z-index: 0;
background: blue;
-webkit-transform: rotate(30deg);
transform: rotate(30deg);
}
.imageTwo {
z-index: 1;
background: red;
margin-top: -100px;
margin-left: 10px;
}
/*# sourceMappingURL=artwork.css.map */

View file

@ -0,0 +1,9 @@
{
"version": 3,
"mappings": "AAAA,AAAA,GAAG,CAAC;EACH,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,KAAK;EACb,MAAM,EAAE,aAAa;CACrB;;AAED,AAAA,SAAS,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,aAAa;CACxB;;AAED,AAAA,SAAS,CAAC;EACT,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,GAAG;EACf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,IAAI;CACjB",
"sources": [
"artwork.scss"
],
"names": [],
"file": "artwork.css"
}

19
assets/css/artwork.scss Normal file
View file

@ -0,0 +1,19 @@
.XX {
position: relative;
width: 100px;
height: 100px;
border: 1px solid red;
}
.imageOne {
z-index: 0;
background: blue;
transform: rotate(30deg);
}
.imageTwo {
z-index: 1;
background: red;
margin-top: -100px;
margin-left: 10px;
}