Skip to content

Commit 55cbe5f

Browse files
committed
Merge pull request #366 from mikaelcarrara/improv-mailing-form
Improv mailing form #357
2 parents 697ccbf + 2552496 commit 55cbe5f

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

stylesheets/main.css

+55
Original file line numberDiff line numberDiff line change
@@ -485,3 +485,58 @@ hr.hidden-modern { display: none; }
485485
background-size: 62px 62px;
486486
}
487487
}
488+
489+
490+
/* Subscription Form */
491+
492+
#subscriptions-form table input {
493+
border-radius: 4px;
494+
height: 36px;
495+
line-height: 36px;
496+
font-family: Arial, sans-serif;
497+
padding: 0 10px 0 10px;
498+
border: 1px solid #ccc;
499+
color: #666;
500+
outline: none;
501+
}
502+
503+
#subscriptions-form { margin: 20px 0 30px 0; }
504+
505+
#subscriptions-form table input {
506+
width: 260px;
507+
font-size: 14px;
508+
}
509+
510+
#subscriptions-form table input,
511+
#subscriptions-form table select { margin-left: 15px; }
512+
513+
#subscriptions-form td { min-width: 120px; }
514+
515+
#subscriptions-form table tr {
516+
width: 94%;
517+
font-size: 14px;
518+
margin-top: 2px;
519+
background: #f6f6f6;
520+
padding: 5px 3% 5px 3%;
521+
color: #666;
522+
float: left;
523+
}
524+
525+
.buttons .button {
526+
border-radius: 4px;
527+
padding: 0 10px 0 10px;
528+
line-height: 36px;
529+
border: none;
530+
border-bottom: 2px solid #973329;
531+
background: #bc3f33;
532+
font-family: Arial, sans-serif;
533+
font-size: 14px;
534+
height: 36px;
535+
display: inline-block;
536+
margin: 15px 0 0 0;
537+
color: #fff;
538+
outline: none;
539+
cursor: pointer;
540+
}
541+
542+
.button:hover { opacity: .7; }

stylesheets/mobile.css

+15
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,21 @@
153153

154154
#header div.site-links a + a { border-top-color: #7c7874; }
155155
#header div.site-links.open a.menu { background-color: #433f3c; }
156+
157+
#subscriptions-form tr,
158+
#subscriptions-form td {
159+
min-width: auto !important;
160+
width: 100%;
161+
display: block;
162+
}
163+
164+
#subscriptions-form table input {
165+
width: 94% !important;
166+
padding: 0 3% 0 3% !important;
167+
}
168+
169+
#subscriptions-form table input,
170+
#subscriptions-form table select { margin-left: 0 !important; }
156171

157172
#sidebar {
158173
border: none;

0 commit comments

Comments
 (0)