This commit is contained in:
Nathan Dinsmore 2013-11-14 20:21:04 -05:00
parent c4b2652c12
commit f115c42b52

View file

@ -25,6 +25,11 @@
width: 480px; width: 480px;
height: 38px; height: 38px;
position: relative; position: relative;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
background: -webkit-linear-gradient(#fff, #e6e6e6);
background: -moz-linear-gradient(#fff, #e6e6e6);
background: -ms-linear-gradient(#fff, #e6e6e6);
background: -o-linear-gradient(#fff, #e6e6e6);
background: linear-gradient(#fff, #e6e6e6); background: linear-gradient(#fff, #e6e6e6);
border: 1px solid #d1d1d1; border: 1px solid #d1d1d1;
border-bottom: 0; border-bottom: 0;
@ -125,6 +130,7 @@ button#trigger-stop:hover {
border: 1px solid rgb(208, 209, 210); border: 1px solid rgb(208, 209, 210);
background: #fff; background: #fff;
border-radius: 12px; border-radius: 12px;
-webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, .5);
box-shadow: 4px 4px 6px rgba(0, 0, 0, .5); box-shadow: 4px 4px 6px rgba(0, 0, 0, .5);
cursor: default; cursor: default;
} }
@ -204,6 +210,7 @@ button#trigger-stop:hover {
padding: 6px; padding: 6px;
} }
#project-id { #project-id {
-webkit-box-shadow: inset 0 3px 3px -3px rgba(0, 0, 0, .3);
box-shadow: inset 0 3px 3px -3px rgba(0, 0, 0, .3); box-shadow: inset 0 3px 3px -3px rgba(0, 0, 0, .3);
background: 0; background: 0;
padding-left: 0; padding-left: 0;
@ -214,15 +221,18 @@ button#trigger-stop:hover {
} }
#project-id.error { #project-id.error {
background: #fee; background: #fee;
-webkit-box-shadow: inset 0 3px 3px -3px rgba(100, 0, 0, .3);
box-shadow: inset 0 3px 3px -3px rgba(100, 0, 0, .3); box-shadow: inset 0 3px 3px -3px rgba(100, 0, 0, .3);
} }
#address-hint { #address-hint {
-webkit-box-shadow: inset 3px 3px 3px -3px rgba(0, 0, 0, .3);
box-shadow: inset 3px 3px 3px -3px rgba(0, 0, 0, .3); box-shadow: inset 3px 3px 3px -3px rgba(0, 0, 0, .3);
padding-right: 0; padding-right: 0;
border-right: 0; border-right: 0;
} }
#address-hint.error { #address-hint.error {
background: #fee; background: #fee;
-webkit-box-shadow: inset 3px 3px 3px -3px rgba(100, 0, 0, .3);
box-shadow: inset 3px 3px 3px -3px rgba(100, 0, 0, .3); box-shadow: inset 3px 3px 3px -3px rgba(100, 0, 0, .3);
} }
#go-project { #go-project {
@ -231,12 +241,24 @@ button#trigger-stop:hover {
border: 1px solid #aaa; border: 1px solid #aaa;
border-left: 0; border-left: 0;
font: inherit; font: inherit;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
background: -webkit-linear-gradient(#fff, #ddd);
background: -moz-linear-gradient(#fff, #ddd);
background: -ms-linear-gradient(#fff, #ddd);
background: -o-linear-gradient(#fff, #ddd);
background: linear-gradient(#fff, #ddd); background: linear-gradient(#fff, #ddd);
-webkit-box-shadow: inset 0 -1px rgba(255, 255, 255, .2);
box-shadow: inset 0 -1px rgba(255, 255, 255, .2); box-shadow: inset 0 -1px rgba(255, 255, 255, .2);
cursor: pointer; cursor: pointer;
} }
#go-project:active { #go-project:active {
background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#eee));
background: -webkit-linear-gradient(#ddd, #eee);
background: -moz-linear-gradient(#ddd, #eee);
background: -ms-linear-gradient(#ddd, #eee);
background: -o-linear-gradient(#ddd, #eee);
background: linear-gradient(#ddd, #eee); background: linear-gradient(#ddd, #eee);
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, .3), inset 0 2px 5px rgba(0, 0, 0, .1);
box-shadow: inset 0 1px rgba(255, 255, 255, .3), inset 0 2px 5px rgba(0, 0, 0, .1); box-shadow: inset 0 1px rgba(255, 255, 255, .3), inset 0 2px 5px rgba(0, 0, 0, .1);
} }