Advertisement
ibetaversion

Star

Aug 12th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5.     <style type="text/css">
  6.        
  7.         html{
  8.         margin:0;
  9.         padding:0;}
  10.        
  11.         body{
  12.         background-color:rgb(163,202,189);
  13.        
  14.         display:-moz-box;
  15.         -moz-box-pack:center;
  16.         -moz-box-align:center;
  17.         margin:0;
  18.         height:100%;
  19.         width:100%;
  20.         }
  21.    
  22.  
  23.         #star:before{
  24.         content:"";
  25.         position:absolute;
  26.         height:100px;
  27.         width:100px;
  28.         margin-top:200px;
  29.         background:red;
  30.         -moz-transform:rotate(30deg);
  31.         }
  32.        
  33.         #star:after{
  34.         content:"";
  35.         position:absolute;
  36.         height:100px;
  37.         width:100px;
  38.         background:red;
  39.         margin-top:200px;      
  40.         -moz-transform:rotate(-30deg);
  41.         }
  42.        
  43.         #shadow{
  44.         box-shadow:0 4px 5px black;
  45.         }
  46.        
  47.        
  48.     </style>
  49.  
  50. </head>
  51.  
  52. <body>
  53.    
  54.     <div id="shadow">
  55.     <div id="star"></div>
  56.     </div>
  57.    
  58. </body>
  59.  
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement