Change submit button color on focus

This commit is contained in:
Gaël Métais
2015-04-27 11:19:25 +02:00
parent dda11627f8
commit 88bb2f91a5
2 changed files with 7 additions and 0 deletions
+3
View File
@@ -16,6 +16,9 @@
background: #e74c3c;
color: #fff;
}
.launchBtn:focus {
background: #ffa319;
}
.launchBtn.disabled {
background: #deaca6;
}
+4
View File
@@ -18,9 +18,13 @@
.launchBtn {
background: #e74c3c;
color: #fff;
&:focus {
background: #ffa319;
}
&.disabled {
background: #deaca6;
}
}
.features {