-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.css
More file actions
42 lines (41 loc) · 1.43 KB
/
calc.css
File metadata and controls
42 lines (41 loc) · 1.43 KB
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
.tblCalc{
background: linear-gradient(to bottom, #92EC00 0%,#4EDF00 100%);
background: -moz-linear-gradient(bottom, #92EC00 0%,#4EDF00 100%);
background: -webkit-linear-gradient(bottom, #92EC00 0%,#4EDF00 100%);
background: -o-linear-gradient(bottom, #92EC00 0%,#4EDF00 100%);
background: -ms-linear-gradient(bottom, #92EC00 0%,#4EDF00 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF4EDF00', endColorstr='#FF92EC00');
border:1px solid #008409;
margin:0;
padding:0;
width:250px;
text-align:center;
}
.tblCalc input{
background: linear-gradient(to bottom, #0bc408 0%,#09a206 100%);
background: -moz-linear-gradien(tbottom, #0bc408 0%,#09a206 100%);
background: -webkit-linear-gradient(bottom, #0bc408 0%,#09a206 100%);
background: -o-linear-gradient(bottom, #0bc408 0%,#09a206 100%);
background: -ms-linear-gradient(bottom, #0bc408 0%,#09a206 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF09a206', endColorstr='#FF0bc408');
color: #fff;
font-size: 16px;
text-shadow: 0 1px 0 #757575;
padding: 4px 0 5px 0;
margin: 4;
cursor: pointer;
border: 1px solid #0e780c;
border-top: 1px solid #87c286;
border-right: 1px solid #0e780c;
border-left: 1px solid #0e780c;
border-bottom: 1px solid #0e780c;
box-shadow: 0 -1px 0 #0e780c, 0 1px 0 #fff;
width:30px;
border-radius: 2px;
}
#btnWide{
width:80px;
}
#editWide{
width:240px;
}