App.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. .bodyWrapper {
  2. font-family: "Roboto", sans-serif;
  3. color: #797878;
  4. margin-right: auto;
  5. margin-left: auto;
  6. width: 100%;
  7. max-width: 1600px;
  8. background-color: #ffffff;
  9. }
  10. a:hover,
  11. a:focus {
  12. color: tomato;
  13. }
  14. .headerWrapper {
  15. min-width: 1200px;
  16. max-width: 1600px;
  17. width: 100%;
  18. margin-left: auto;
  19. margin-right: auto;
  20. background-color: rgb(6, 59, 60);
  21. color: white;
  22. }
  23. .navWrapper {
  24. display: flex;
  25. max-width: 1300px;
  26. margin-left: auto;
  27. margin-right: auto;
  28. padding: 10px;
  29. justify-content: space-between;
  30. }
  31. .mainWrapper {
  32. min-width: 1200px;
  33. max-width: 1600px;
  34. /* max-width: 1300px; */
  35. margin-left: auto;
  36. margin-right: auto;
  37. /* background-color: rgb(247, 243, 243); */
  38. }
  39. .menuWrapper {
  40. width: 400px;
  41. background-color: rgba(250, 103, 6, 0.4);
  42. color: rgb(68, 68, 68);
  43. padding: 10px;
  44. font-weight: 700;
  45. }
  46. .searchWrapper {
  47. width: 200px;
  48. border-radius: 5px;
  49. background-color: #ffffff;
  50. }
  51. .footerWrapper {
  52. min-width: 1200px;
  53. max-width: 1600px;
  54. margin-left: auto;
  55. margin-right: auto;
  56. background-color: rgb(6, 59, 60);
  57. color: white;
  58. }
  59. .App {
  60. text-align: center;
  61. }
  62. .App-logo {
  63. height: 60px;
  64. pointer-events: none;
  65. }
  66. @media (prefers-reduced-motion: no-preference) {
  67. .App-logo {
  68. animation: App-logo-spin infinite 20s linear;
  69. }
  70. }
  71. /* .App-header {
  72. background-color: #282c34;
  73. min-height: 100vh;
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. justify-content: center;
  78. font-size: calc(10px + 2vmin);
  79. color: white;
  80. }
  81. .App-link {
  82. color: #61dafb;
  83. } */
  84. /* @keyframes App-logo-spin {
  85. from {
  86. transform: rotate(0deg);
  87. }
  88. to {
  89. transform: rotate(360deg);
  90. }
  91. } */
  92. .footer-logo {
  93. height: 50px;
  94. }
  95. .footerNav {
  96. display: flex;
  97. max-width: 1300px;
  98. margin-left: auto;
  99. margin-right: auto;
  100. padding: 10px;
  101. justify-content: space-between;
  102. }
  103. .logoBlock {
  104. border-radius: 50%;
  105. background-color: #ffffff;
  106. width: 50px;
  107. height: 50px;
  108. }
  109. .firstpage {
  110. text-align: center;
  111. padding-left: 200px;
  112. padding-right: 200px;
  113. padding-bottom: 200px;
  114. padding-top: 50px;
  115. background-color: white;
  116. }
  117. .formWrapper {
  118. display: flex;
  119. justify-content: center;
  120. }
  121. .greetingCard {
  122. width: 300px;
  123. padding: 10px;
  124. background-color: lightgray;
  125. border-radius: 5px;
  126. }
  127. .greetingLogo {
  128. width: 100%;
  129. }
  130. /* .loginIconWrapper {
  131. width: 40px;
  132. height: 40px;
  133. border-radius: 5px;
  134. padding: 8px;
  135. } */
  136. .loginIcon {
  137. width: 40px;
  138. height: 40px;
  139. border-radius: 5px;
  140. padding: 8px;
  141. }