#e8e8e8
1/* Unique styles for the newsletter form */ 2.newsletter-form { 3 max-width: 400px; 4 margin: 0 auto; 5 padding: 20px; 6 border: 2px solid #333; 7 border-radius: 8px; 8 background-color: #f7f7f7; 9 font-family: Arial, sans-serif; 10 box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; 11} 12 13.heading { 14 font-weight: bold; 15 font-size: 20px; 16} 17 18.newsletter-form h2 { 19 margin-top: 0; 20 color: #333; 21 font-size: 24px; 22} 23 24.newsletter-form label { 25 display: block; 26 font-weight: bold; 27 color: #666; 28 margin-bottom: 10px; 29} 30 31.newsletter-form input[type="email"] { 32 width: 100%; 33 padding: 10px; 34 margin-bottom: 10px; 35 border: 1px solid #ccc; 36 border-radius: 4px; 37} 38 39.newsletter-form input[type="submit"] { 40 width: 100%; 41 padding: 10px; 42 border: none; 43 border-radius: 4px; 44 background-color: #ff6600; 45 color: #fff; 46 font-weight: bold; 47 cursor: pointer; 48} 49 50.newsletter-form input[type="submit"]:hover { 51 background-color: #ff8533; 52}
502 views
502 views
Comments
MIT License