popuo-box.css 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /* Styles for dialog window */
  2. #small-dialog, #small-dialog2, #small-dialog3, #small-dialog4 {
  3. background: #FFF;
  4. padding: 20px;
  5. text-align: left;
  6. max-width: 700px;
  7. margin: 40px auto;
  8. position: relative;
  9. text-align: center;
  10. }
  11. #small-dialog-it, #small-dialog-in, #small-dialog-fr, #small-dialog-sh, #small-dialog-sf, #small-dialog-su, #small-dialog-me, #small-dialog-ch, #small-dialog-pi, #small-dialog-am {
  12. background: white;
  13. padding: 20px;
  14. text-align: left;
  15. max-width: 450px;
  16. margin: 40px auto;
  17. position: relative;
  18. text-align: center;
  19. }
  20. .signup h4 {
  21. color: #000;
  22. }
  23. .portfolio-items {
  24. text-align: center;
  25. margin: 0 auto;
  26. }
  27. .portfolio-items img {
  28. width: 100%;
  29. }
  30. .portfolio-items h4 {
  31. margin: 1em 0;
  32. font-size: 25px;
  33. color: #a63d56;
  34. }
  35. .portfolio-items p {
  36. text-align: justify;
  37. }
  38. /**
  39. /**
  40. * Fade-zoom animation for first dialog
  41. */
  42. /* start state */
  43. .my-mfp-zoom-in #small-dialog {
  44. opacity: 0;
  45. -webkit-transition: all 0.2s ease-in-out;
  46. -moz-transition: all 0.2s ease-in-out;
  47. -o-transition: all 0.2s ease-in-out;
  48. transition: all 0.2s ease-in-out;
  49. -webkit-transform: scale(0.8);
  50. -moz-transform: scale(0.8);
  51. -ms-transform: scale(0.8);
  52. -o-transform: scale(0.8);
  53. transform: scale(0.8);
  54. }
  55. /* animate in */
  56. .my-mfp-zoom-in.mfp-ready #small-dialog {
  57. opacity: 1;
  58. -webkit-transform: scale(1);
  59. -moz-transform: scale(1);
  60. -ms-transform: scale(1);
  61. -o-transform: scale(1);
  62. transform: scale(1);
  63. }
  64. /* animate out */
  65. .my-mfp-zoom-in.mfp-removing #small-dialog {
  66. -webkit-transform: scale(0.8);
  67. -moz-transform: scale(0.8);
  68. -ms-transform: scale(0.8);
  69. -o-transform: scale(0.8);
  70. transform: scale(0.8);
  71. opacity: 0;
  72. }
  73. /* Dark overlay, start state */
  74. .my-mfp-zoom-in.mfp-bg {
  75. opacity: 0;
  76. -webkit-transition: opacity 0.3s ease-out;
  77. -moz-transition: opacity 0.3s ease-out;
  78. -o-transition: opacity 0.3s ease-out;
  79. transition: opacity 0.3s ease-out;
  80. }
  81. /* animate in */
  82. .my-mfp-zoom-in.mfp-ready.mfp-bg {
  83. opacity: 0.8;
  84. }
  85. /* animate out */
  86. .my-mfp-zoom-in.mfp-removing.mfp-bg {
  87. opacity: 0;
  88. }
  89. /**
  90. /* Magnific Popup CSS */
  91. .mfp-bg {
  92. top: 0;
  93. left: 0;
  94. width: 100%;
  95. height: 100%;
  96. z-index: 1042;
  97. overflow: hidden;
  98. position: fixed;
  99. background: #0b0b0b;
  100. opacity: 0.8;
  101. filter: alpha(opacity=80);
  102. }
  103. .mfp-wrap {
  104. top: 0;
  105. left: 0;
  106. width: 100%;
  107. height: 100%;
  108. z-index: 1043;
  109. position: fixed;
  110. outline: none !important;
  111. -webkit-backface-visibility: hidden;
  112. }
  113. .mfp-container {
  114. text-align: center;
  115. position: absolute;
  116. width: 100%;
  117. height: 100%;
  118. left: 0;
  119. top: 0;
  120. padding: 0 8px;
  121. -webkit-box-sizing: border-box;
  122. -moz-box-sizing: border-box;
  123. box-sizing: border-box;
  124. }
  125. .mfp-container:before {
  126. content: '';
  127. display: inline-block;
  128. height: 100%;
  129. vertical-align: middle;
  130. }
  131. .mfp-align-top .mfp-container:before {
  132. display: none;
  133. }
  134. .mfp-content {
  135. position: relative;
  136. display: inline-block;
  137. vertical-align: middle;
  138. margin: 0 auto;
  139. text-align: left;
  140. z-index: 1045;
  141. }
  142. .mfp-inline-holder .mfp-content,
  143. .mfp-ajax-holder .mfp-content {
  144. width: 100%;
  145. cursor: auto;
  146. }
  147. .mfp-ajax-cur {
  148. cursor: progress;
  149. }
  150. .mfp-zoom-out-cur,
  151. .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  152. cursor: -moz-zoom-out;
  153. cursor: -webkit-zoom-out;
  154. cursor: zoom-out;
  155. }
  156. .mfp-zoom {
  157. cursor: pointer;
  158. cursor: -webkit-zoom-in;
  159. cursor: -moz-zoom-in;
  160. cursor: zoom-in;
  161. }
  162. .mfp-auto-cursor .mfp-content {
  163. cursor: auto;
  164. }
  165. .mfp-close,
  166. .mfp-arrow,
  167. .mfp-preloader,
  168. .mfp-counter {
  169. -webkit-user-select: none;
  170. -moz-user-select: none;
  171. user-select: none;
  172. }
  173. .mfp-loading.mfp-figure {
  174. display: none;
  175. }
  176. .mfp-hide {
  177. display: none !important;
  178. }
  179. .mfp-content iframe {
  180. width: 100%;
  181. min-height: 500px;
  182. border: none;
  183. }
  184. .mfp-preloader {
  185. color: #cccccc;
  186. position: absolute;
  187. top: 50%;
  188. width: auto;
  189. text-align: center;
  190. margin-top: -0.8em;
  191. left: 8px;
  192. right: 8px;
  193. z-index: 1044;
  194. }
  195. .mfp-preloader a {
  196. color: #cccccc;
  197. }
  198. .mfp-preloader a:hover {
  199. color: white;
  200. }
  201. .mfp-s-ready .mfp-preloader {
  202. display: none;
  203. }
  204. .mfp-s-error .mfp-content {
  205. display: none;
  206. }
  207. button.mfp-close,
  208. button.mfp-arrow {
  209. overflow: visible;
  210. cursor: pointer;
  211. border: 0;
  212. background: #FFF;
  213. -webkit-appearance: none;
  214. display: block;
  215. padding: 0;
  216. z-index: 1046;
  217. }
  218. button::-moz-focus-inner {
  219. padding: 0;
  220. border: 0;
  221. }
  222. .mfp-close {
  223. width: 44px;
  224. height: 44px;
  225. line-height: 44px;
  226. position: absolute;
  227. right: 0px;
  228. top: 0px;
  229. text-decoration: none;
  230. text-align: center;
  231. padding: 0 0 18px 10px;
  232. color: white;
  233. font-style: normal;
  234. font-size: 28px;
  235. outline: none;
  236. font-family: 'Open Sans', sans-serif;
  237. }
  238. .mfp-close:hover, .mfp-close:focus {
  239. opacity: 1;
  240. }
  241. .mfp-close-btn-in .mfp-close {
  242. color: #333333;
  243. background: #FFF;
  244. }
  245. .mfp-image-holder .mfp-close,
  246. .mfp-iframe-holder .mfp-close {
  247. color: white;
  248. right: -6px;
  249. text-align: right;
  250. padding-right: 6px;
  251. width: 100%;
  252. }
  253. .login h3, .signup h3 {
  254. margin: 1em 0;
  255. color: #000000;
  256. font-weight: 700;
  257. }
  258. .login p {
  259. color: #000000;
  260. font-size: 14px;
  261. text-align: center;
  262. }
  263. .login input[type="text"], .login input[type="password"] {
  264. width: 90%;
  265. border: none;
  266. padding: 12px;
  267. margin: 3px 0;
  268. color: #9F9F9F;
  269. font-size: 14px;
  270. border: solid 1px #9F9F9F;
  271. border-radius: 7px;
  272. -webkit-border-radius: 7px;
  273. -moz-border-radius: 7px;
  274. -o-border-radius: 7px;
  275. -ms-border-radius: 7px;
  276. font-family: 'Open Sans', sans-serif;
  277. outline: none !important;
  278. -webkit-appearance: none;
  279. }
  280. .signup input[type="text"] {
  281. width: 44.5%;
  282. padding: 10px;
  283. margin: 10px 0;
  284. outline: none;
  285. color: #817F7F;
  286. border: solid 1px #9F9F9F;
  287. border-radius: 7px;
  288. -webkit-border-radius: 7px;
  289. -moz-border-radius: 7px;
  290. -o-border-radius: 7px;
  291. -ms-border-radius: 7px;
  292. -webkit-appearance: none;
  293. }
  294. .signup input.password[type="text"] {
  295. width: 90%;
  296. }
  297. .signup input.email[type="text"], .signup input[type="password"] {
  298. width: 90%;
  299. padding: 10px;
  300. margin: 10px 0;
  301. outline: none;
  302. color: #817F7F;
  303. border: solid 1px #9F9F9F;
  304. border-radius: 7px;
  305. -webkit-border-radius: 7px;
  306. -moz-border-radius: 7px;
  307. -o-border-radius: 7px;
  308. -ms-border-radius: 7px;
  309. -webkit-appearance: none;
  310. }
  311. .login input[type="submit"], .signup input[type="submit"] {
  312. border: 0px;
  313. padding: 8px;
  314. margin: 10px 10px;
  315. width: 90%;
  316. outline: none;
  317. font-size: 16px;
  318. color: #9F9F9F;
  319. font-weight: 700;
  320. text-transform: uppercase;
  321. font-family: 'Open Sans', sans-serif;
  322. border: solid 1px #9F9F9F;
  323. border-radius: 7px;
  324. -webkit-border-radius: 7px;
  325. -moz-border-radius: 7px;
  326. -o-border-radius: 7px;
  327. -ms-border-radius: 7px;
  328. -webkit-appearance: none;
  329. }
  330. .login input[type="submit"]:hover, .signup input[type="submit"]:hover {
  331. -webkit-transition: all 0.5s ease-in-out;
  332. -moz-transition: all 0.5s ease-in-out;
  333. -o-transition: all 0.5s ease-in-out;
  334. transition: all 0.5s ease-in-out;
  335. border: solid 1px #3EB5F1;
  336. color: #3EB5F1;
  337. }
  338. @media all and (max-width: 736px) {
  339. .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  340. width: 72%;
  341. cursor: auto;
  342. }
  343. }
  344. @media all and (max-width: 640px) {
  345. .mfp-content iframe {
  346. width: 100%;
  347. min-height: 350px;
  348. }
  349. }
  350. @media all and (max-width: 480px) {
  351. .mfp-content iframe {
  352. width: 100%;
  353. min-height: 249px;
  354. }
  355. }
  356. @media all and (max-width: 320px) {
  357. #small-dialog {
  358. padding: 15px;
  359. }
  360. }