blob: 23ff6318565e96fc726cd5720ab197bf7f8a1d43 (
plain)
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
|
body {
background-color: #008200;
font-family: Georgia, Verdana, Helvetica, Arial, Sans Serif;
}
h1 {
padding: 0;
margin: 0;
text-align: center;
font-family: Verdana;
color: #00340A;
}
form {
margin: auto;
margin-bottom: 15px;
width: 750px;
border-radius: 5px;
border: solid 2px #DFFFFF;
text-align: center;
color: #DFFFFF;
background-color: #888;
}
ul {
text-align: left;
}
input {
width: 150px;
background-color: #00A600;
border: solid 2px #DFFFFF;
color: #DFFFFF;
}
.spades {
color: darkblue;
font-size: 20px;
}
.hearts {
color: red;
font-size: 20px;
}
.diamonds {
color: orange;
font-size: 20px;
}
.clubs {
color: darkgreen;
font-size: 20px;
}
.error {
background-color: #880000;
color: red;
border-radius: 5px;
border: solid 2px red;
}
th {
background-color: #666;
text-align: center;
}
td {
text-align: right;
width: 80px;
line-height: 20px;
}
td:first-child {
background-color: #666;
text-align: left;
width: 300px;
}
.subtotal {
background-color: #777;
color: black;
}
.total {
background-color: #666;
color: black;
}
table {
width: 700px;
margin: auto;
margin-bottom: 10px;
margin-top: 10px;
}
|