PluginProbe
Mailchimp List Subscribe Form / 1.8.0
Mailchimp List Subscribe Form v1.8.0
1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 All 55 releases
mailchimp / views / css / frontend.php

frontend.php in Mailchimp List Subscribe Form 1.8.0, at views/css/frontend.php

75 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Renders the frontend CSS stylesheet.
4 *
5 * @package Mailchimp
6 */
7
8 ?>
9 .mc_error_msg, .mc_error_msg a {
10 color: red;
11 margin-bottom: 1.0em;
12 }
13 .mc_success_msg {
14 color: green;
15 margin-bottom: 1.0em;
16 }
17 .mc_merge_var{
18 padding:0;
19 margin:0;
20 }
21 <?php
22 /**
23 * If we're utilizing custom styles
24 */
25
26 if ( get_option( 'mc_custom_style' ) === 'on' ) {
27 ?>
28 #mc_signup_form {
29 padding:5px;
30 border-width: <?php echo absint( get_option( 'mc_form_border_width' ) ); ?>px;
31 border-style: <?php echo ( get_option( 'mc_form_border_width' ) === 0 ) ? 'none' : 'solid'; ?>;
32 border-color: #<?php echo esc_attr( get_option( 'mc_form_border_color' ) ); ?>;
33 color: #<?php echo esc_attr( get_option( 'mc_form_text_color' ) ); ?>;
34 background-color: #<?php echo esc_attr( get_option( 'mc_form_background' ) ); ?>;
35 }
36 <?php
37 }
38 ?>
39 #mc_signup_container {}
40 #mc_signup_form {}
41 #mc_signup_form .mc_var_label {}
42 #mc_signup_form .mc_input {}
43 #mc-indicates-required {
44 width:100%;
45 }
46 .mc_interests_header {
47 font-weight:bold;
48 }
49 div.mc_interest{
50 width:100%;
51 }
52 #mc_signup_form input.mc_interest {}
53 #mc_signup_form select {}
54 #mc_signup_form label.mc_interest_label {
55 display:inline;
56 }
57 .mc_signup_submit {
58 text-align:center;
59 }
60 ul.mc_list {
61 list-style-type: none;
62 margin-left: 0;
63 padding-left: 0;
64 }
65 ul.mc_list li {
66 font-size: 14px;
67 }
68 #ui-datepicker-div .ui-datepicker-year {
69 display: none;
70 }
71 #ui-datepicker-div.show .ui-datepicker-year {
72 display: inline;
73 padding-left: 3px
74 }
75