-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (112 loc) · 3.44 KB
/
style.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px;
}
pin { font-size:300% }
big{ font-size:200% }
kindabig{ font-size:150% }
green{ background:#83F52C; }
red { background:red; }
button.styled{
color: #040;
font: bold 110% 'trebuchet ms',helvetica,sans-serif;
background-color:#fed;
background: -moz-linear-gradient(top, #ffffff, #ffeedd);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fed));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#ffffffff', EndColorStr='#ffeeddaa');
border-width: 0.1em;
height:2em;
width:5em;
margin: 0 0 0 0;
padding: 0 0 0 0;
vertical-align: middle;
}
button.big{
color: #040;
font: bold 110% 'trebuchet ms',helvetica,sans-serif;
background-color:#fed;
background: -moz-linear-gradient(top, #ffffff, #ffeedd);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fed));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#ffffffff', EndColorStr='#ffeeddaa');
border-width: 0.5em;
height:5em;
width:10em;
margin: 0 0 0 0;
padding: 0 0 0 0;
vertical-align: middle;
}
button.wide{
color: #040;
font: bold 110% 'trebuchet ms',helvetica,sans-serif;
background-color:#fed;
background: -moz-linear-gradient(top, #ffffff, #ffeedd);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fed));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#ffffffff', EndColorStr='#ffeeddaa');
border-width: 0.5em;
height:5em;
width:20em;
margin: 0 0 0 0;
padding: 0 0 0 0;
vertical-align: center;
}
button.bigger{
color: #040;
font: bold 110% 'trebuchet ms',helvetica,sans-serif;
background-color:#fed;
background: -moz-linear-gradient(top, #ffffff, #ffeedd);
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fed));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#ffffffff', EndColorStr='#ffeeddaa');
border-width: 0.5em;
height:50em;
width:100em;
margin: 0 0 0 0;
padding: 0 0 0 0;
vertical-align: middle;
}
button:hover {
background-color:#A9D0F5;
background: -moz-linear-gradient(top, #ffffff, #a9d0f5);
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#a9d0f5));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#ffffffff', EndColorStr='#a9d0f5aa'); /* border-color: #c63 #930 #930 #c63; */
}
legend, label, input, select, option {
font-size: 200%;
text-align: center;
margin-left: auto;
margin-right: auto;
}
input#barcode, textarea#barcode {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
width: 22em;
}
fieldset { /* width: 700px;*/
text-align: center;
border-style: solid none none none;
border-width: 0.4em;
}
table
{
margin-left: auto;
margin-right: auto;
}
table.list {
width: 100%;
text-align: center;
border-collapse: collapse;
}
table.list td {
border: 1px solid black;
padding: 5px;
}
table.list tr.header {
background: #99CCFF;
font-weight: bold;
vertical-align: bottom;
}
table.list tr.header a,
table.list tr.header a:hover,
table.list tr.header a:visited {
color: black;
text-decoration: none;
}
#badgeMenu { border-color: blue; } itemMenu { border-color: green; } managementMenu { border-color: red; }
.uline { text-decoration: underline; }