Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <body>
  2.  
  3. <rect class="works" width="100" height="100" fill="purple" stroke="white"/>
  4.  
  5. <rect class="works" width="100" height="100" fill="blue" stroke="white"/>
  6.  
  7. <rect class="works" width="100" height="100" fill="purple" stroke="white"/>
  8.  
  9. <rect class="works" width="100" height="100" fill="blue" stroke="white"/>
  10.  
  11. <rect class="works" width="100" height="100" fill="blue" stroke="white"/>
  12.  
  13. <line x1="0" y1="-150" x2="0" y2="0" stroke="white"/>
  14. </svg>
  15.  
  16. </header>
  17.  
  18. body {
  19. background-color: black;
  20. }
  21.  
  22. svg :first-of-type {
  23. transform: translateX(300px) translateY(100px) rotate(45deg);}
  24. svg :nth-of-type(2) {
  25. transform: translateX(442px) translateY(100px) rotate(45deg);}
  26. svg :nth-of-type(3) {
  27. transform: translateX(442px) translateY(241px) rotate(45deg);}
  28.  
  29. <text x="-140" y="250" stroke="white" font-size="24" transform="rotate(-45)" >Lorem</text>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement