Skip to content

Commit a087e2c

Browse files
committed
Added 'safe' color
1 parent 1ba96e2 commit a087e2c

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

lib/assets/stylesheets/css3buttons/styles.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,40 @@ http://github.com/necolas/css3-github-buttons
278278
background-image: linear-gradient(#b33630, #dc5f59);
279279
}
280280

281+
/* ............................................................................................................. safe */
282+
283+
.button.safe {
284+
color: #fff;
285+
border-color: #6b9640;
286+
border-bottom-color: #747d4a;
287+
text-decoration: none;
288+
text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
289+
background-color: #7bac4c;
290+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#aed36c), to(#7bac4c));
291+
background-image: -moz-linear-gradient(#aed36c, #7bac4c);
292+
background-image: -o-linear-gradient(#aed36c, #7bac4c);
293+
background-image: linear-gradient(#aed36c, #7bac4c);
294+
}
295+
296+
.button.safe:hover,
297+
.button.safe:focus,
298+
.button.safe:active {
299+
background-color: #a2c581;
300+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bddb89), to(#96bd71));
301+
background-image: -moz-linear-gradient(#bddb89, #96bd71);
302+
background-image: -o-linear-gradient(#bddb89, #96bd71);
303+
background-image: linear-gradient(#bddb89, #96bd71);
304+
}
305+
306+
.button.safe:active,
307+
.button.safe.active {
308+
background-color: #a2c581;
309+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#96bd71), to(#bddb89));
310+
background-image: -moz-linear-gradient(#96bd71, #bddb89);
311+
background-image: -o-linear-gradient(#96bd71, #bddb89);
312+
background-image: linear-gradient(#96bd71, #bddb89);
313+
}
314+
281315
/* ............................................................................................................. Pill */
282316

283317
.button.pill {

0 commit comments

Comments
 (0)