初始化CRICS
This commit is contained in:
34
WebSite/Styles/button.css
Normal file
34
WebSite/Styles/button.css
Normal file
@@ -0,0 +1,34 @@
|
||||
.button {
|
||||
/*float:left; */
|
||||
height:32px;
|
||||
display:inline-block;
|
||||
outline:0 none;
|
||||
padding:8px 12px;
|
||||
margin:0;
|
||||
cursor:pointer;
|
||||
border:1px solid;
|
||||
font:bold 9pt/100% Arial, Helvetica, sans-serif;
|
||||
-moz-border-radius:5px 5px 5px 5px;
|
||||
-webkit-border-radius:5px 5px 5px 5px;
|
||||
border-radius:5px 5px 5px 5px;
|
||||
-moz-box-shadow:0px 0px 1px #fff inset;
|
||||
-webkit-box-shadow:0px 0px 1px #fff inset;
|
||||
box-shadow:0px 0px 1px #fff inset;
|
||||
}
|
||||
|
||||
/* Blue Color Scheme ------------------------ */
|
||||
.blue {
|
||||
color:#fff;
|
||||
text-shadow:1px 1px 0px #09365f;
|
||||
background:#064884;
|
||||
background:-moz-linear-gradient(top, #3b75b4 0%, #064884 100%);
|
||||
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #3b75b4), color-stop(100%, #064884));
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b75b4', endColorstr='#064884', GradientType=0);
|
||||
border-color:#09365f;
|
||||
}
|
||||
.blue:hover {
|
||||
background:#3b75b4;
|
||||
background:-moz-linear-gradient(top, #064884 0%, #3b75b4 100%);
|
||||
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #064884), color-stop(100%, #3b75b4));
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#064884', endColorstr='#3b75b4', GradientType=0);
|
||||
}
|
||||
Reference in New Issue
Block a user