Advertisement
Guest User

Still Life CSS

a guest
Sep 21st, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.61 KB | None | 0 0
  1. body{
  2. background-color: #5B73D0;
  3. }
  4.  
  5.  
  6.  
  7.  
  8. .painting {
  9.   width: 300px;
  10.   height: 400px;
  11.   background: #C3B7A4;
  12.   position: absolute;
  13.   left: 40%;
  14.   top: 20%;
  15. }
  16.  
  17.  
  18.  
  19.  
  20.  
  21. .orange1{
  22. border-radius: 50%;
  23. width: 100px;
  24. height: 100px;
  25. background-color:   #F7A248;
  26. position: absolute;
  27. left: 53%;
  28. top: 60%
  29. }
  30.  
  31.  
  32. .orange2{
  33.   border-radius: 50%;
  34.   width: 70px;
  35.   height: 50px;
  36.   background-color: #FEC100;
  37.   position: absolute;
  38.   left: 50%;
  39.   top: 68%;
  40.   transform: rotate(-15deg);
  41.  
  42. }
  43.  
  44.  
  45. .vase{
  46. width: 100px;
  47. height: 280px;
  48. background-color:#E7CBB5;
  49. position: absolute;
  50. left:60%;
  51. top: 37%;
  52. border-radius: 10%;
  53. }
  54.  
  55.  
  56. .pot{
  57.     border-bottom: 80px solid red;
  58.     border-left: 25px solid transparent;
  59.     border-right: 25px solid transparent;
  60.     height: 0;
  61.     width: 100px;
  62.     transform: rotate(180deg);
  63.     border-radius: 15%;
  64.     position: absolute;
  65.     left: 34%;
  66.     top: 63%;
  67. }
  68.  
  69.  
  70. .mug{
  71.   width: 50px;
  72.   height: 80px;
  73.   background-color:#ECE4F1;
  74.   position: absolute;
  75.   left:45.5%;
  76.   top: 64%;
  77.   border-radius: 20%;
  78.   }
  79.  
  80.  
  81.  
  82. .hair{
  83.       width: 80px;
  84.       height: 80px;
  85.       border-radius: 50%;
  86.       box-shadow: 15px 15px 0 0 #715E54;
  87.       position: absolute;
  88.       left:47.5%;
  89.       top: 30%;
  90.       transform: rotate(225deg);
  91.     }
  92.  
  93.     .body{
  94.         border-bottom: 200px solid  #596F6D;
  95.         border-left: 40px solid transparent;
  96.         border-right: 40px solid transparent;
  97.         height: 100px;
  98.         width: 100px;
  99.         transform: rotate(180deg);
  100.         border-radius: 20%;
  101.         position: absolute;
  102.         left: 44%;
  103.         top: 47%;
  104.  
  105.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement