_allStaff.scss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. .menuAndContent{
  2. max-width: 100%;
  3. display: flex;
  4. .contentStaffs{
  5. width: 100%;
  6. padding: 10px;
  7. }
  8. .staffs{
  9. margin: 0 auto;
  10. display: flex;
  11. align-items: center;
  12. align-content: center;
  13. flex-wrap: wrap;
  14. }
  15. .staff{
  16. width: 350px;
  17. height: 250px;
  18. margin: 10px;
  19. padding: 1%;
  20. border: none;
  21. outline: none;
  22. border: 0px;
  23. cursor: pointer;
  24. color: #FD7F71;
  25. transition: .3s ease-out;
  26. border-radius: 10px;
  27. background-color: #fff;
  28. box-shadow: 0 1px 1px rgba(187, 216, 216, 0.6),
  29. 0 3px 3px rgba(187, 216, 216, 0.4),
  30. 0 8px 16px rgba(187, 216, 216, 0.3);
  31. .titlleAndPrice{
  32. display: flex;
  33. justify-content: space-around;
  34. padding-top: 10px;
  35. }
  36. }
  37. .imgStaff{
  38. width: 100%;
  39. height: 80%;
  40. padding: 5px ;
  41. }
  42. .staffinfo{
  43. width: 100%;
  44. height: 100%;
  45. margin: 10px;
  46. padding: 1%;
  47. border: none;
  48. outline: none;
  49. border: 0px;
  50. cursor: pointer;
  51. color: #FD7F71;
  52. transition: .3s ease-out;
  53. border-radius: 10px;
  54. background-color: #fff;
  55. box-shadow: 0 1px 1px rgba(187, 216, 216, 0.6),
  56. 0 3px 3px rgba(187, 216, 216, 0.4),
  57. 0 8px 16px rgba(187, 216, 216, 0.3);
  58. .titlleAndPrice{
  59. display: flex;
  60. justify-content: space-around;
  61. padding-top: 10px;
  62. }
  63. .fullImgStaff{
  64. width: 480px;
  65. height: 320px;
  66. border: none;
  67. outline: none;
  68. border: 1px;
  69. border-radius: 10px;
  70. animation-timing-function: linear;
  71. }
  72. }
  73. .loader{
  74. position: fixed;
  75. bottom: 0;
  76. left: 50%;
  77. right: 0;
  78. top: 50%;
  79. height: 100%;
  80. width: 100%;
  81. z-index: 9999;
  82. }
  83. }
  84. .topbutton{
  85. position:fixed;
  86. bottom:50px;
  87. right:50px;
  88. -webkit-transform: translate3d(0, 0, 0);
  89. transform: translate3d(0, 0, 0);
  90. display: block;
  91. width: 50px;
  92. height: 50px;
  93. line-height:50px;
  94. text-align:center;
  95. color: #fff;
  96. border: none;
  97. box-shadow: 0 0 0 0 #f0f0f0, 0 0 0 0 #FD7F71;
  98. border-radius: 25px;
  99. background: #FD7F71;
  100. cursor: pointer;
  101. transform: translate3d(0, 0, 0);
  102. animation: pulse 1.25s infinite cubic-bezier(0.66, 0.33, 0, 1);
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. &:hover > i {
  107. color:#fff;
  108. text-shadow: 3px 3px 3px rgba(0,0,0,.35);
  109. }
  110. &:focus > i {
  111. color:#fff;
  112. }
  113. @keyframes pulse {
  114. to {
  115. box-shadow: 0 0 0 12px transparent, 0 0 0 24px rgba(227, 115, 14, 0);
  116. }
  117. }
  118. }
  119. // .loader{
  120. // position: fixed;
  121. // bottom: 0;
  122. // left: 50%;
  123. // right: 0;
  124. // top: 50%;
  125. // height: 100%;
  126. // width: 100%;
  127. // z-index: 9999;
  128. // }
  129. .carusel{
  130. border: none;
  131. outline: none;
  132. border: 0px;
  133. border-radius: 10px;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. }
  138. .viwe-carusel{
  139. height: 100%;
  140. width: var(--main-width);
  141. display: flex;
  142. flex-direction: row;
  143. overflow: hidden;
  144. }
  145. .el-carusel{
  146. height: 100%;
  147. border: none;
  148. outline: none;
  149. border: 0px;
  150. border-radius: 10px;
  151. width: var(--main-width);
  152. user-select: none;
  153. animation-timing-function: linear;
  154. }
  155. .el-carusel::befor{
  156. animation: eye 3s ease-in-out infinite;
  157. }
  158. .scropl-carusel{
  159. width: 99999px;
  160. display: flex;
  161. transition: all 2s ease-in-out;
  162. }
  163. .scropl-carusel-finish{
  164. width: 99999px;
  165. display: flex;
  166. transition: all 0s ease-in-out;
  167. }
  168. .img-carusel{
  169. width: 100%;
  170. height: 100%;
  171. }
  172. .but{
  173. display: flex;
  174. font-size: 2rem;
  175. color: #424271;
  176. background-color: #efeded;
  177. height: 50px;
  178. width: 50px;
  179. /*position: relative;
  180. top: 125px;*/
  181. transform: translate(100%);
  182. font-weight: bold;
  183. opacity: 0.5;
  184. user-select: none;
  185. }
  186. .but:hover{
  187. color: #ccd024;
  188. cursor: pointer;
  189. opacity: 1;
  190. }
  191. .back{
  192. z-index: 1;
  193. align-items: center;
  194. justify-content: center;
  195. /*transform: translateX(100%);*/
  196. }
  197. .next{
  198. z-index: 1;
  199. align-items: center;
  200. justify-content: center;
  201. transform: rotate(180deg) translate(100%);
  202. }
  203. .ant-carousel{
  204. width: 480px;
  205. }
  206. .ant-carousel .slick-slide {
  207. width: 480px;
  208. text-align: center;
  209. height: 320px;
  210. line-height: 160px;
  211. overflow: hidden;
  212. }
  213. .ant-carousel .slick-slide h3 {
  214. color: #fff;
  215. }