Advertisement
ZardoZAntony

SnowMan on CSS3

Feb 1st, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="ru">
  4.     <meta charset="UTF-8">
  5.     <title>Снеговик</title>
  6.  
  7.     <style type="text/css">
  8.         .clear {
  9.             clear: both;
  10.         }
  11.  
  12.         .earth {
  13.             width: auto;
  14.             height: 105px;
  15.             background-color: transparent;
  16.             box-shadow: inset 0 10px 20px 0 #666666;
  17.         }
  18.  
  19.         .ball {
  20.             border: 1px solid #dadada;
  21.             background-color: #e1e1e1;
  22.             border-radius: 100%;
  23.             margin: 0 auto -4px auto;
  24.             box-shadow: inset 0 -10px 20px 0 #666666;
  25.         }
  26.  
  27.         .eyes {
  28.             width: 10px;
  29.             height: 17px;
  30.             border: 2px solid #333333;
  31.             background-color: #333333;
  32.             border-radius: 100%;
  33.             transform: rotate(25deg);
  34.         }
  35.  
  36.         .margin-eye1{
  37.             margin: 17px;
  38.             float: left;
  39.         }
  40.  
  41.         .margin-eye2{
  42.             margin: 20px 25px 0 0;
  43.             float: right;
  44.         }
  45.  
  46.         .nose {
  47.             margin: -30px 0 0 8px;
  48.             height: 50px;
  49.             width: 10px;
  50.             border-radius: 0 0 100% 0;
  51.             border: 1px solid #dadada;
  52.             background-color: #cb4b16;
  53.             transform: rotate(90deg);
  54.         }
  55.  
  56.         .mouth {
  57.             margin: -20px 0 0 30px;
  58.             height: 30px;
  59.             width: 5px;
  60.             border-radius: 0 100% 100% 0;
  61.             border: 1px solid #dadada;
  62.             background-color: #333333;
  63.             transform: rotate(95deg);
  64.         }
  65.  
  66.         .hand {
  67.             height: 5px;
  68.             border: 1px solid #dadada;
  69.             background-color: #333333;
  70.         }
  71.  
  72.         .left-hand-position {
  73.             width: 160px;
  74.             transform: rotate(13deg);
  75.             margin: 30px 0 0 -80px;
  76.         }
  77.  
  78.         .right-hand-position {
  79.             width: 78px;
  80.             transform: rotate(2deg);
  81.             margin: 30px 0 0 -80px;
  82.         }
  83.  
  84.         .fist-size {
  85.             height: 100px;
  86.             width: 100px;
  87.         }
  88.  
  89.         .second-size {
  90.             height: 150px;
  91.             width: 150px;
  92.         }
  93.  
  94.         .third-size {
  95.             height: 200px;
  96.             width: 200px;
  97.         }
  98.     </style>
  99. </head>
  100. <body>
  101.     <div class="ball fist-size">
  102.         <div class="eyes margin-eye1"></div>
  103.         <div class="eyes margin-eye2"></div>
  104.         <div class="clear"></div>
  105.         <div class="nose"></div>
  106.         <div class="mouth"></div>
  107.     </div>
  108.  
  109.     <div class="ball second-size">
  110.         <div class="hand left-hand-position"></div>
  111.         <div class="hand right-hand-position"></div>
  112.     </div>
  113.     <div class="ball third-size"></div>
  114.     <div class="earth"></div>
  115. </body>
  116. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement