Created
November 4, 2013 19:08
-
-
Save divanvisagie/7307627 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| body{ | |
| background:white; | |
| } | |
| .sq{ | |
| margin-top:50px; | |
| margin-left:50px; | |
| width:100%; | |
| height:100%; | |
| background:#ff7700; | |
| -webkit-transform: rotate(45deg); | |
| border-radius:8%; | |
| } | |
| .ll{ | |
| width:77%; | |
| height:8%; | |
| background:white; | |
| top:25%; | |
| left:0%; | |
| position:relative; | |
| } | |
| .tl{ | |
| width:8%; | |
| height:65%; | |
| background:white; | |
| position:relative; | |
| top:-85%; | |
| left:96%; | |
| } | |
| .cont{ | |
| width:100px; | |
| height:100px; | |
| } | |
| .mid{ | |
| position:relative; | |
| top:-153%; | |
| left:90%; | |
| } | |
| .left{ | |
| position:relative; | |
| top:-114%; | |
| left:90%; | |
| } | |
| .right{ | |
| position:relative; | |
| top:-165%; | |
| left:120%; | |
| } | |
| .rounding{ | |
| border-radius:50%; | |
| width:20%; | |
| height:20%; | |
| background:white; | |
| } |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div class="cont"> | |
| <div class="sq"> | |
| <div class="ll"></div> | |
| </div> | |
| <div class="tl"></div> | |
| <div class="rounding mid"></div> | |
| <div class="rounding left"></div> | |
| <div class="rounding right"></div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment