Advertisement
ranisalt

RSS CSS

Jul 7th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <style>
  5.             * { margin: 0; padding: 0; }
  6.             #box { border-radius: 15%; height: 400px; position: relative; width: 400px; }
  7.             #box div { border-top-right-radius: 100%; bottom: 0; position: absolute; }
  8.             #box, .i { background-color: #F60; }
  9.             .o { background-color: #FFF; }
  10.  
  11.             #box > div { height: 75%; margin: 12.5%; width: 75%; }
  12.             #box > div > div { height: 82.5%; width: 82.5%; }
  13.             #box > div > div > div { height: 85%; width: 85%; }
  14.             #box > div > div > div > div { height: 75%; width: 75%; }
  15.             #box > div > div > div > div > div { border-radius: 50%; height: 65%; width: 65%; }
  16.         </style>
  17.     </head>
  18.     <body>
  19.         <div id="box">
  20.             <div class="o">
  21.                 <div class="i">
  22.                     <div class="o">
  23.                         <div class="i">
  24.                             <div class="o"></div>
  25.                         </div>
  26.                     </div>
  27.                 </div>
  28.             </div>
  29.         </div>
  30.     </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement