style-modal-boletin.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. #ouibounce-modal {
  2. font-family: 'Open Sans', sans-serif;
  3. display: none;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. width: 100%;
  8. height: 100%
  9. }
  10. #ouibounce-modal .underlay {
  11. width: 100%;
  12. height: 100%;
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. background-color: rgba(0, 0, 0, .5);
  17. cursor: pointer;
  18. -webkit-animation: fadein .5s;
  19. animation: fadein .5s
  20. }
  21. #ouibounce-modal .modalNuevo {
  22. width: 600px;
  23. height: 450px;
  24. background-color: #fff;
  25. z-index: 2;
  26. position: absolute;
  27. margin: auto;
  28. top: 0;
  29. right: 0;
  30. bottom: 0;
  31. left: 0;
  32. border-radius: 4px;
  33. -webkit-animation: popin .3s;
  34. animation: popin .3s
  35. }
  36. #ouibounce-modal .modal-title {
  37. color: #fff !important;
  38. }
  39. #ouibounce-modal h3 {
  40. color: #fff;
  41. font-size: 1em;
  42. margin: .2em;
  43. text-transform: uppercase;
  44. font-weight: 500
  45. }
  46. #ouibounce-modal .modal-body {
  47. padding: 20px 35px;
  48. font-size: .9em
  49. }
  50. #ouibounce-modal p {
  51. color: white;
  52. }
  53. .white {
  54. color: white;
  55. }
  56. #ouibounce-modal form input[type=email] {
  57. padding: 10px;
  58. margin: 1px;
  59. margin-bottom: 10px;
  60. font-size: 1.2em;
  61. text-align: center;
  62. width: 460px;
  63. border-radius: 4px;
  64. border: 1px solid #ccc;
  65. -webkit-font-smoothing: antialiased
  66. }
  67. #ouibounce-modal form button {
  68. text-transform: uppercase;
  69. font-weight: 700;
  70. padding: 12px;
  71. font-size: 1.1em;
  72. border-radius: 4px;
  73. color: #fff;
  74. background-color: #4ab471;
  75. border: none;
  76. cursor: pointer;
  77. -webkit-font-smoothing: antialiased;
  78. border: solid 1px;
  79. }
  80. #ouibounce-modal form button:hover {
  81. background-color: transparent;
  82. border-color: #1faf71;
  83. color: #1faf71;
  84. }
  85. #ouibounce-modal .modal-footer {
  86. position: absolute;
  87. bottom: 20px;
  88. text-align: center;
  89. width: 100%;
  90. justify-content: center;
  91. border-top: none;
  92. }
  93. .modal-form {
  94. width: 460px;
  95. }
  96. #ouibounce-modal .modal-footer p {
  97. cursor: pointer;
  98. display: inline;
  99. }
  100. .modal-head {
  101. background-color: #1faf71;
  102. color: white;
  103. }
  104. .btn-salir {
  105. background-color: transparent;
  106. border-color: transparent;
  107. color: #252525;
  108. }
  109. .btn-salir:hover {
  110. background-color: transparent;
  111. border-color: #1faf71;
  112. color: #1faf71;
  113. }
  114. @-webkit-keyframes fadein {
  115. 0% {
  116. opacity: 0
  117. }
  118. 100% {
  119. opacity: 1
  120. }
  121. }
  122. @-ms-keyframes fadein {
  123. 0% {
  124. opacity: 0
  125. }
  126. 100% {
  127. opacity: 1
  128. }
  129. }
  130. @keyframes fadein {
  131. 0% {
  132. opacity: 0
  133. }
  134. 100% {
  135. opacity: 1
  136. }
  137. }
  138. @-webkit-keyframes popin {
  139. 0% {
  140. -webkit-transform: scale(0);
  141. transform: scale(0);
  142. opacity: 0
  143. }
  144. 85% {
  145. -webkit-transform: scale(1.05);
  146. transform: scale(1.05);
  147. opacity: 1
  148. }
  149. 100% {
  150. -webkit-transform: scale(1);
  151. transform: scale(1);
  152. opacity: 1
  153. }
  154. }
  155. @-ms-keyframes popin {
  156. 0% {
  157. -ms-transform: scale(0);
  158. transform: scale(0);
  159. opacity: 0
  160. }
  161. 85% {
  162. -ms-transform: scale(1.05);
  163. transform: scale(1.05);
  164. opacity: 1
  165. }
  166. 100% {
  167. -ms-transform: scale(1);
  168. transform: scale(1);
  169. opacity: 1
  170. }
  171. }
  172. @keyframes popin {
  173. 0% {
  174. -webkit-transform: scale(0);
  175. -ms-transform: scale(0);
  176. transform: scale(0);
  177. opacity: 0
  178. }
  179. 85% {
  180. -webkit-transform: scale(1.05);
  181. -ms-transform: scale(1.05);
  182. transform: scale(1.05);
  183. opacity: 1
  184. }
  185. 100% {
  186. -webkit-transform: scale(1);
  187. -ms-transform: scale(1);
  188. transform: scale(1);
  189. opacity: 1
  190. }
  191. }
  192. @media (min-width: 490px) and (max-width: 800px) {
  193. #ouibounce-modal .modalNuevo {
  194. width: 460px;
  195. }
  196. #ouibounce-modal form input[type=email] {
  197. width: 400px;
  198. }
  199. .modal-form {
  200. width: 400px;
  201. }
  202. }
  203. @media (min-width: 440px) and (max-width: 490px) {
  204. #ouibounce-modal .modalNuevo {
  205. width: 440px;
  206. }
  207. #ouibounce-modal form input[type=email] {
  208. width: 350px;
  209. }
  210. .modal-form {
  211. width: 350px;
  212. }
  213. #ouibounce-modal h2 {
  214. font-size: 1.9em;
  215. }
  216. }
  217. @media (min-width: 300px) and (max-width: 440px) {
  218. #ouibounce-modal .modalNuevo {
  219. width: 370px;
  220. }
  221. #ouibounce-modal form input[type=email] {
  222. width: 350px;
  223. }
  224. .modal-form {
  225. width: 350px;
  226. }
  227. #ouibounce-modal h2 {
  228. font-size: 1.5em;
  229. }
  230. }
  231. @media (min-width: 300px) and (max-width: 340px) {
  232. #ouibounce-modal .modalNuevo {
  233. width: 330px;
  234. }
  235. #ouibounce-modal form input[type=email] {
  236. width: 310px;
  237. }
  238. .modal-form {
  239. width: 310px;
  240. }
  241. #ouibounce-modal h2 {
  242. font-size: 1.2em;
  243. }
  244. #ouibounce-modal p {
  245. font-size: 1em;
  246. }
  247. #ouibounce-modal form button {
  248. font-size: 1em;
  249. }
  250. }