styles.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .triangulos-box {
  2. width: 0;
  3. margin: 2em auto 0;
  4. background: yellow;
  5. border: 50px solid;
  6. border-color: red black;
  7. }
  8. .triangulo-rectangulo {
  9. width: 0;
  10. margin: 2em auto 0;
  11. border: 50px solid red;
  12. border-top-color: transparent;
  13. border-right-color: transparent;
  14. }
  15. .triangulo-isosceles {
  16. width: 0;
  17. margin: 2em auto 0;
  18. border: 80px solid red;
  19. border-top-color: transparent;
  20. border-right-color: transparent;
  21. border-left-color: transparent;
  22. }
  23. .radius {
  24. width: 200px;
  25. height: 100px;
  26. background: yellow;
  27. margin: 2em auto 0;
  28. border: 2px solid black;
  29. border-radius: 30px;
  30. }
  31. .elipse {
  32. width: 200px;
  33. height: 100px;
  34. background: skyblue;
  35. margin: 2em auto 0;
  36. border: 2px solid black;
  37. border-radius: 50%;
  38. }
  39. .figura {
  40. width: 200px;
  41. height: 100px;
  42. background: orange;
  43. margin: 2em auto 0;
  44. border: 2px solid black;
  45. /* border-radius: 25px / 75px; */
  46. border-radius:
  47. 120px 120px 10px 10px /
  48. 10px 10px 20px 20px;
  49. }