Skip to content

Commit f744285

Browse files
committed
mult-line-button-tweaks
1 parent 41d748e commit f744285

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

multi-line-button/multi-line-button.css

+8-3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ body {
6666
}
6767

6868
/* line 11, multi-line-button.sass */
69+
p {
70+
margin: 1em 0;
71+
}
72+
73+
/* line 14, multi-line-button.sass */
6974
a.multi-line-button {
7075
-moz-background-clip: padding;
7176
-webkit-background-clip: padding;
@@ -152,7 +157,7 @@ a.multi-line-button:active, a.multi-line-button.depressed {
152157
box-shadow: none;
153158
border-color: #2970a9;
154159
}
155-
/* line 13, multi-line-button.sass */
160+
/* line 16, multi-line-button.sass */
156161
a.multi-line-button.green {
157162
background-color: #63bb4a;
158163
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #83c96f), color-stop(50%, #63bb4a), color-stop(100%, #4e9939));
@@ -185,7 +190,7 @@ a.multi-line-button.green:active, a.multi-line-button.green.depressed {
185190
box-shadow: none;
186191
border-color: #3b742b;
187192
}
188-
/* line 15, multi-line-button.sass */
193+
/* line 18, multi-line-button.sass */
189194
a.multi-line-button.red {
190195
background-color: #bf4040;
191196
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #cc6666), color-stop(50%, #bf4040), color-stop(100%, #993333));
@@ -218,7 +223,7 @@ a.multi-line-button.red:active, a.multi-line-button.red.depressed {
218223
box-shadow: none;
219224
border-color: #732626;
220225
}
221-
/* line 17, multi-line-button.sass */
226+
/* line 20, multi-line-button.sass */
222227
a.multi-line-button.orange {
223228
background-color: #d98026;
224229
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #e19951), color-stop(50%, #d98026), color-stop(100%, #ae661e));

multi-line-button/multi-line-button.haml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
%a.multi-line-button{:href=>"#", :style=>"width:14em"}
1111
%span.title Start Free Trial
1212
%span.subtitle 30-days free! Signup in 60 seconds
13-
13+
%p
1414
%a.multi-line-button.green{:href=>"#", :style=>"width:14em"}
1515
%span.title Start Free Trial
1616
%span.subtitle 30-days free! Signup in 60 seconds
17-
17+
%p
1818
%a.multi-line-button.red{:href=>"#", :style=>"width:14em"}
1919
%span.title Start Free Trial
2020
%span.subtitle 30-days free! Signup in 60 seconds
21-
21+
%p
2222
%a.multi-line-button.orange{:href=>"#", :style=>"width:14em"}
2323
%span.title Start Free Trial
2424
%span.subtitle 30-days free! Signup in 60 seconds

multi-line-button/multi-line-button.html

+6
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,20 @@
1313
<span class='title'>Start Free Trial</span>
1414
<span class='subtitle'>30-days free! Signup in 60 seconds</span>
1515
</a>
16+
</p>
17+
<p>
1618
<a class='multi-line-button green' href='#' style='width:14em'>
1719
<span class='title'>Start Free Trial</span>
1820
<span class='subtitle'>30-days free! Signup in 60 seconds</span>
1921
</a>
22+
</p>
23+
<p>
2024
<a class='multi-line-button red' href='#' style='width:14em'>
2125
<span class='title'>Start Free Trial</span>
2226
<span class='subtitle'>30-days free! Signup in 60 seconds</span>
2327
</a>
28+
</p>
29+
<p>
2430
<a class='multi-line-button orange' href='#' style='width:14em'>
2531
<span class='title'>Start Free Trial</span>
2632
<span class='subtitle'>30-days free! Signup in 60 seconds</span>

multi-line-button/multi-line-button.sass

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ body
88
padding: 30px
99
text-align: center
1010

11+
p
12+
margin: 1em 0
13+
1114
a.multi-line-button
1215
+multi-line-button(#60a3d8)
1316
&.green

0 commit comments

Comments
 (0)