-
Notifications
You must be signed in to change notification settings - Fork 41
/
soft_button.css
94 lines (79 loc) · 1.63 KB
/
soft_button.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.button
{
padding: 4px 6px;
text-align: center;
border: 1px solid #c7c8c9;
background: #F3F4F7;
background-color: #f0f2f3;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#ffffff), to(#f0f2f3));
background: -moz-linear-gradient(#ffffff, #f0f2f3);
-pie-background: linear-gradient(#ffffff, #f0f2f3);
-webkit-box-shadow: #c6c9cd 0px 1px 3px;
-moz-box-shadow: #c6c9cd 0px 1px 3px;
box-shadow: #c6c9cd 0px 1px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
}
a.button, a.button:visited
{
color:#000;
text-decoration: none;
}
.button:hover
{
border: 1px solid #F1C43F;
background: #fee486;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fef9c9), to(#fee486));
background: -moz-linear-gradient(#fef9c9, #fee486);
-pie-background: linear-gradient(#fef9c9, #fee486);
cursor: pointer;
}
.button:active
{
border: 1px solid #c28a30;
background: #ffd86b;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fee486), to(#ffd86b));
background: -moz-linear-gradient(#fee486, #ffd86b);
-pie-background: linear-gradient(#fee486, #ffd86b);
cursor: pointer;
}
.new-button
{
padding: 2px 6px;
float: right;
width: 100px;
margin-top: -5px;
}
.button.big
{
width: 150px;
padding: 10px;
margin-top: 5px;
margin-bottom: 5px;
position: relative;
}
.button.big img
{
position: absolute;
margin-right: 10px;
}
.button.big .label
{
margin-left: 42px;
text-align: left;
font-weight: bold;
display: block;
}
.button.big .desc
{
text-align: left;
font-size: 8pt;
margin-top: 5px;
margin-left: 42px;
display: block;
}
.clear
{
clear: both;
}