Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. .body {
  2. width: 1000px;
  3. height: 100%}
  4.  
  5. .cubo {
  6. position: relative;
  7. transform-style: preserved-3d;
  8. width: 100%;
  9. height: 100%}
  10.  
  11. .one {
  12. width: 200px;
  13. height: 200px;
  14. position: absolute;
  15. background-color: red;
  16. top: 50px;
  17. left: 0;
  18. transform:translateZ(50px) }
  19.  
  20. .two {
  21. width: 200px;
  22. height: 200px;
  23. position: absolute;
  24. background-color: purple;
  25. top: 0;
  26. left: 34px;
  27. transform: rotateX(80deg) skew(-19deg, 0) translateZ(68px)}
  28.  
  29. .three {
  30. width: 200px;
  31. height: 200px;
  32. position: absolute;
  33. background-color: gray;
  34. top: 41px;
  35. left: 117px;
  36. transform: rotateY(70deg) skew(0deg, -10deg) translate(50px)}
  37.  
  38. .four {
  39. width: 200px;
  40. height: 200px;
  41. position: absolute;
  42. background-color: green;
  43. top: 200px;
  44. left: 34px;
  45. transform: rotateX(80deg) skew(-19deg, 0) translateZ(68px)}
  46.  
  47. .five {
  48. width: 200px;
  49. height: 200px;
  50. position: absolute;
  51. background-color: pink;
  52. top: 41px;
  53. left: -83px;
  54. transform: rotateY(70deg) skew(0deg, -10deg) translate(50px)}
  55.  
  56. .six {
  57. width: 200px;
  58. height: 200px;
  59. position: absolute;
  60. background-color: yellow;
  61. top: 15px;
  62. left: 69px;
  63. transform: translateZ(0px)}
Add Comment
Please, Sign In to add comment