repository to manage all files related to the makeathon farm bot project (Software + Documentation).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

robot.component.css 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. img {
  2. border-radius: 0.5rem;
  3. width: 15.625rem;
  4. height: 12.5rem;
  5. margin: 0rem 0.3125rem;
  6. }
  7. .container {
  8. text-align: center;
  9. display: grid;
  10. grid-template-columns: 40.625rem 12.5rem;
  11. grid-template-rows: 12.5rem 6.25rem 6.25rem;
  12. width: 53.125rem;
  13. min-width: 46.875rem;
  14. font-family: Cormorant;
  15. box-shadow: 0.3125rem 0.3125rem 0.3125rem silver;
  16. border-radius: 1.25rem;
  17. border-color: silver;
  18. border-width: 0.0625rem;
  19. border-style: solid;
  20. padding: 0.625rem;
  21. margin: auto;
  22. margin-top: 3rem;
  23. }
  24. .robotImage {
  25. grid-row: 1 / -1;
  26. grid-column: 2 / 3;
  27. justify-self: end;
  28. align-self: start;
  29. }
  30. .robotAkku {
  31. grid-row: 1 / 2;
  32. grid-column: 1/2;
  33. justify-self: start;
  34. align-self: center;
  35. display: grid;
  36. grid-template-columns: 15.625rem 12.5rem 12.5rem;
  37. align-items: center;
  38. }
  39. .akkuMsg {
  40. grid-column: 1/2;
  41. justify-self: start;
  42. align-self: center;
  43. margin: 0;
  44. }
  45. .akkuProgressbar {
  46. grid-column: 2/3;
  47. justify-self: center;
  48. align-self: center;
  49. }
  50. .akkuValue {
  51. grid-column: 3/4;
  52. justify-self: start;
  53. align-self: center;
  54. margin: 0;
  55. margin-left: 0.3125rem;
  56. }
  57. .robotCoordinates {
  58. grid-row: 2 / 3;
  59. grid-column: 1/2;
  60. justify-self: start;
  61. align-self: center;
  62. display: grid;
  63. grid-template-columns: 15.625rem 12.5rem;
  64. align-items: center;
  65. }
  66. .item-timestamp-name {
  67. grid-column: 1/2;
  68. justify-self: start;
  69. align-self: start;
  70. }
  71. .item-timestamp-value {
  72. grid-column: 2/3;
  73. justify-self: start;
  74. align-self: center;
  75. }
  76. mat-spinner {
  77. margin: 7rem auto;
  78. }