Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. .ear{
  2. width: 0px;
  3. height: 0px;
  4. border-left: 50px solid transparent;
  5. border-right: 50px solid transparent;
  6. border-bottom: 100px solid #E67300;
  7. position:absolute;
  8. }
  9. #left-ear{
  10. left:50px;
  11. transform:rotate(-30deg);
  12. }
  13. #right-ear{
  14. left:220px;
  15. transform:rotate(30deg);
  16. }
  17.  
  18. #head{
  19. width: 220px;
  20. height: 230px;
  21. background-color: #CC6600;
  22. border-radius: 100%;
  23. position: absolute;
  24. left: 75px;
  25. top: 50px;
  26. }
  27.  
  28. .eyes{
  29. width: 20px;
  30. height: 40px;
  31. background-color: black;
  32. border-radius: 50%;
  33. position: absolute;
  34. top: 70px;
  35. }
  36.  
  37. #left-eye{
  38. left: 65px;
  39. }
  40.  
  41. #right-eye{
  42. left:135px;
  43. }
  44.  
  45. #nose{
  46. width:30px;
  47. height:20px;
  48. background-color:#FF9966;
  49. border-radius:50%;
  50. position: absolute;
  51. left:95px;
  52. top:130px;
  53. }
  54. #line { width: 3px; height: 20px; background: black; position: absolute; left: 109.5px; top: 150px; }
  55.  
  56. .mouth-curve { width: 40px; height: 40px; border-radius: 50%; position: absolute; top: 140px; }
  57.  
  58. #left-curve { border-left: 3px solid black; border-right: 3px solid transparent; border-top: 3px solid transparent; border-bottom: 3px solid black; left: 67px; transform: rotate(-45deg); }
  59.  
  60. #right-curve { border-left: 3px solid transparent; border-right: 3px solid black; border-top: 3px solid transparent; border-bottom: 3px solid black; left: 110px; transform: rotate(45deg); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement