TinyForest system front-end written with ReactJS
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.

86 lines
1.2 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. .App {
  2. text-align: center;
  3. }
  4. .wrapper {
  5. background: rgba(245, 245, 245, 0.6);
  6. padding: 10px;
  7. }
  8. .wrapperSys {
  9. background: rgba(245, 245, 245, 0.6);
  10. padding: 10px;
  11. }
  12. .plants {
  13. width: 60%;
  14. display: grid;
  15. grid-column-gap: 12px;
  16. grid-row-gap: 12px;
  17. grid-template-columns: 1fr 1fr;
  18. }
  19. .sensors {
  20. display: grid;
  21. grid-column-gap: 2px;
  22. grid-row-gap: 2px;
  23. grid-template-columns: 1fr 1fr;
  24. }
  25. .plant1 {
  26. background: rgb(240, 240, 240);
  27. text-align: center;
  28. border: rgb(0, 0, 0) solid 1px;
  29. }
  30. .plant2 {
  31. margin-left:10px;
  32. background: rgb(240, 240, 240);
  33. text-align: center;
  34. border: rgb(0, 0, 0) solid 1px;
  35. }
  36. .sys1 {
  37. width: 90%;
  38. margin-top: 20px;
  39. background: rgb(240, 240, 240);
  40. text-align: center;
  41. border: rgb(0, 0, 0) solid 2px;
  42. }
  43. .Modaldiv{
  44. margin-top: 50px;
  45. margin-left: 300px;
  46. align-content:auto;
  47. color: white;
  48. width: 20%;
  49. }
  50. .modal-wrapper{
  51. background: lightgray;
  52. width: 70%;
  53. display: grid;
  54. grid-column-gap: 12px;
  55. grid-row-gap: 12px;
  56. grid-template-columns: 1fr 1fr 1fr;
  57. }
  58. .nav-link{
  59. font-size: 25px;
  60. }
  61. .navbar-brand{
  62. font-size: 30px;
  63. }
  64. .home-wrapper {
  65. display: grid;
  66. grid-template-columns: 1fr 1fr;
  67. position: fixed;
  68. }
  69. .hometext {
  70. padding: 15px;
  71. }
  72. .gridimages {
  73. padding: 5px;
  74. }