forked from zelon88/HRConvert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHRConvert2.css
60 lines (57 loc) · 2.17 KB
/
HRConvert2.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
select {
width: 140px;
padding: 5px 5px 5px 5px;
font-size: 16px;
border: 1px solid #ccc;
height: 34px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
/* CAUTION: IE hackery ahead */
select::-ms-expand {
display: none; } /* remove default arrow in IE 10 and 11 */
/* target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
select {
background:none\9;
padding: 5px\9; } }
.info-button {
-moz-box-shadow: 3px 4px 0px 0px #f3f6f4;
-webkit-box-shadow: 3px 4px 0px 0px #f3f6f4;
box-shadow: 3px 4px 0px 0px #f3f6f4;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bcbcbc), color-stop(1, #eeeeee));
background:-moz-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%);
background:-webkit-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%);
background:-o-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%);
background:-ms-linear-gradient(top, #bcbcbc 5%, #eeeeee 100%);
background:linear-gradient(to bottom, #bcbcbc 5%, #eeeeee 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#bcbcbc\', endColorstr=\'#eeeeee\',GradientType=0);
background-color:#bcbcbc;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
border:1px solid #5b5b5b;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
font-weight:bold;
padding:12px 44px;
text-decoration:none;
text-shadow:0px 1px 0px #bcbcbc;
min-width:100px;
width:250px;
max-width:1000px; }
.info-button:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #eeeeee), color-stop(1, #bcbcbc));
background:-moz-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%);
background:-webkit-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%);
background:-o-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%);
background:-ms-linear-gradient(top, #eeeeee 5%, #bcbcbc 100%);
background:linear-gradient(to bottom, #eeeeee 5%, #bcbcbc 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#eeeeee\', endColorstr=\'#bcbcbc\',GradientType=0);
background-color:#eeeeee; }
.info-button:active {
position:relative;
top:1px; }