FermentContainerTank_1117.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. .footer{
  2. position: absolute;
  3. width: 100%;
  4. background-color: #eee;
  5. text-align: center;
  6. }
  7. body {
  8. margin: 0;
  9. }
  10. input[type="button"] {
  11. padding: 4px 15px;
  12. background: #f3f3f3;
  13. border: 0 none;
  14. cursor: pointer;
  15. -webkit-border-radius: 5px;
  16. border-radius: 5px;
  17. }
  18. .navbar-dark .navbar-nav .nav-link {
  19. color: white;
  20. cursor: pointer;
  21. text-decoration: none;
  22. width: 110px;
  23. height: 46px;
  24. }
  25. .nav-top {
  26. line-height: 40px;
  27. background-color: #C4C4C4;
  28. }
  29. .website_title {
  30. font-family: Roboto;
  31. font-style: normal;
  32. font-weight: normal;
  33. font-size: 30px;
  34. color: #000000;
  35. }
  36. .navbar-nav>li {
  37. float: none;
  38. display: inline-block;
  39. width: 100px;
  40. margin: 0 auto;
  41. text-align: center;
  42. }
  43. .navbar-nav>li a {
  44. font-size: 20px;
  45. }
  46. .main-page {
  47. margin-top: 200px;
  48. }
  49. .page-title {
  50. font-family: Roboto;
  51. font-style: normal;
  52. font-weight: bold;
  53. font-size: 36px;
  54. }
  55. .flex {
  56. display: flex;
  57. flex-direction: row;
  58. flex-wrap: wrap;
  59. justify-content: center;
  60. }
  61. .set-link {
  62. display: inline-block;
  63. width: 350px;
  64. height: 100px;
  65. line-height: 100px;
  66. background: #008CBA;
  67. border: 1px solid #CFCFCF;
  68. box-sizing: border-box;
  69. color: #FFFFFF;
  70. border-radius: 10px;
  71. font-size: 36px;
  72. }
  73. .cmn-toggle {
  74. position: absolute;
  75. margin-left: 0px;
  76. visibility: hidden;
  77. }
  78. .cmn-toggle+label {
  79. display: block;
  80. position: relative;
  81. cursor: pointer;
  82. outline: none;
  83. user-select: none;
  84. }
  85. input.cmn-toggle-round-flat+label {
  86. padding: 2px;
  87. width: 60px;
  88. height: 30px;
  89. background-color: #C0C0C0;
  90. border-radius: 60px;
  91. transition: background 0.4s;
  92. }
  93. input.cmn-toggle-round-flat+label:before,
  94. input.cmn-toggle-round-flat+label:after {
  95. display: block;
  96. position: absolute;
  97. content: "";
  98. }
  99. input.cmn-toggle-round-flat+label:before {
  100. top: 2px;
  101. left: 2px;
  102. bottom: 2px;
  103. right: 2px;
  104. background-color: #fff;
  105. border-radius: 60px;
  106. transition: background 0.4s;
  107. }
  108. input.cmn-toggle-round-flat+label:after {
  109. top: 4px;
  110. left: 4px;
  111. bottom: 4px;
  112. width: 24px;
  113. background-color: #dddddd;
  114. border-radius: 52px;
  115. transition: margin 0.4s, background 0.4s;
  116. }
  117. input.cmn-toggle-round-flat:checked+label {
  118. background-color: #C0C0C0;
  119. }
  120. input.cmn-toggle-round-flat:checked+label:after {
  121. margin-left: 27px;
  122. background-color: #008CBA;
  123. }
  124. @media(max-width:373px) {
  125. .card {
  126. margin-right: 0px;
  127. }
  128. .set-link {
  129. width: 250px;
  130. }
  131. }
  132. @media(max-width:577px) {}
  133. @media(min-width:576px) {}
  134. @media(min-width:768px) {
  135. .navbar-nav>li {
  136. margin-left: 0px;
  137. }
  138. .navbar-nav .li-block {
  139. display: none;
  140. }
  141. }
  142. @media(min-width:991px) {
  143. .navbar-nav>li {
  144. margin-left: 20px;
  145. }
  146. .navbar-nav .li-block {
  147. display: none;
  148. }
  149. }
  150. @media(min-width:1200px) {
  151. .navbar-nav>li {
  152. margin-left: 50px;
  153. }
  154. .navbar-nav .li-block {
  155. display: inline-block;
  156. width: 100px;
  157. }
  158. }
  159. @media(min-width:1400px) {
  160. .navbar-nav .li-block {
  161. display: inline-block;
  162. width: 200px;
  163. }
  164. }
  165. @media(min-width:1689px) {
  166. .navbar-nav>li {
  167. margin-left: 50px;
  168. }
  169. .navbar-nav .li-block {
  170. display: inline-block;
  171. width: 500px;
  172. }
  173. }