mailchimp.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #mc_embed_signup {
  2. background-color: rgba(50, 66, 74, 0.85);
  3. color: #fff;
  4. font-size: 1em;
  5. font-weight: 400;
  6. font-family: 'Open Sans', sans-serif;
  7. margin-bottom: 2em;
  8. margin-top: 5em;
  9. border-radius: 5px;
  10. clear: both;
  11. }
  12. #mc_embed_signup input {
  13. margin: 0.85em auto;
  14. outline: none;
  15. color: #333;
  16. background-color: #fff;
  17. border-color: #fff;
  18. transition: all 0.5s;
  19. }
  20. #mc_embed_signup input:focus {
  21. background-color: #ddd;
  22. border-color: #ddd;
  23. }
  24. #mc_embed_signup h2 {
  25. margin-bottom: 1em;
  26. }
  27. div.mce_inline_error {
  28. color: orange!important;
  29. }
  30. input.mce_inline_error {
  31. border-color: orange!important;
  32. outline: orange!important;
  33. }
  34. /*Subscribe btn*/
  35. input#mc-embedded-subscribe {
  36. background-color: #7297ce!important;
  37. }
  38. input#mc-embedded-subscribe:hover, input#mc-embedded-subscribe:active {
  39. opacity: 0.7!important;
  40. }
  41. /*Response text success*/
  42. #mce-success-response {
  43. color: #fff !important;
  44. }
  45. .envelope-icon {
  46. margin-right: 0.5em;
  47. vertical-align: top;
  48. font-size: 1.2em;
  49. }
  50. /* =================================================
  51. MEDIA QUERIES
  52. ==================================================*/
  53. /* ----------------- 1 COL ------------------ */
  54. @media (max-width: 499px) {
  55. #mc_embed_signup h2 {
  56. font-size: 1.1em;
  57. }
  58. #mc_embed_signup label {
  59. font-size: 0.95em;
  60. }
  61. }
  62. /* ------------ Between COL 4 & 5 ---------------- */
  63. @media (min-width: 992px) and (max-width: 1154px) {
  64. #mc_embed_signup {
  65. margin-right: 20%;
  66. margin-left: 20%;
  67. width: 60%
  68. }
  69. }