styles.css 807 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body{
  2. position: relative;
  3. padding-bottom: 300px;
  4. background-color: rgb(226, 221, 221);
  5. min-height: 100vh;
  6. }
  7. button{
  8. min-width: 40px;
  9. min-height: 20px;
  10. background-color: rgb(149, 240, 4);
  11. font-size: 14px;
  12. }
  13. table{
  14. max-width: 100%;
  15. margin: 0 auto;
  16. margin-bottom: 30px;
  17. }
  18. .semen{
  19. background-color: rgb(233, 213, 101);
  20. padding: 10px;
  21. border-radius: 10px;
  22. border: solid 3px orange;
  23. color: rgb(247, 45, 9);
  24. }
  25. .coco{
  26. background-color: rgb(50, 177, 236);
  27. padding: 10px;
  28. border-radius: 10px;
  29. border: solid 3px rgb(11, 7, 238);
  30. color: rgb(25, 9, 247);
  31. }
  32. .oil{
  33. background-color: rgb(228, 109, 168);
  34. padding: 10px;
  35. border-radius: 10px;
  36. border: solid 3px rgb(238, 7, 7);
  37. color: rgb(247, 247, 247);
  38. }
  39. h2{
  40. text-align: center;
  41. color: brown;
  42. }
  43. a{
  44. height: auto;
  45. }