-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (101 loc) · 3.53 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
@media print{
.table-area {
overflow: visible !important;
width: 100% !important;
height: 100% !important;
}
#cash-input, #output {
float: none;
}
.charges {
color:black !important;
}
#container, #checkout, input{
display: none;
}
}
body {
background: #066dab;
}
#container {
width: 55%;
float:left;
}
#container img, #checkout img {
float: left;
width:128px;
height: 128px;
border:solid 1px black;
border-radius: 10%;
margin-right: 5px;
margin-bottom: 5px;
background: #066dab; /* Old browsers */
background: -moz-linear-gradient(top, #066dab 0%, #8abbd7 58%, #c5deea 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#066dab), color-stop(58%,#8abbd7), color-stop(100%,#c5deea)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* IE10+ */
background: linear-gradient(to bottom, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#066dab', endColorstr='#c5deea',GradientType=0 ); /* IE6-9 */
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
}
#container img:active, #checkout img:active {
float: left;
width:128px;
height: 128px;
border:solid 1px black;
border-radius: 10%;
margin-right: 5px;
margin-bottom: 5px;
background: #066dab; /* Old browsers */
background: -moz-linear-gradient(bottom, #066dab 0%, #8abbd7 58%, #c5deea 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,#066dab), color-stop(58%,#8abbd7), color-stop(100%,#c5deea)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(bottom, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(bottom, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* IE10+ */
background: linear-gradient(to top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#066dab', endColorstr='#c5deea',GradientType=0 ); /* IE6-9 */
box-shadow: none;
}
aside {
width: 45%;
float:left;
}
table{
width: 100%;
}
th {
text-align: left;
background: #066dab; /* Old browsers */
background: -moz-linear-gradient(top, #066dab 0%, #8abbd7 58%, #c5deea 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#066dab), color-stop(58%,#8abbd7), color-stop(100%,#c5deea)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* IE10+ */
background: linear-gradient(to bottom, #066dab 0%,#8abbd7 58%,#c5deea 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#066dab', endColorstr='#c5deea',GradientType=0 ); /* IE6-9 */
}
.table-area{
height: 250px;
background-color: #fff;
border:solid 1px black;
overflow: auto;
}
#checkout {
margin-top: 10px;
}
.charges {
margin-right: 10px;
color: #fff;
}
#cash-input{
margin-top: 20px;
width: 50%;
float:left;
}
#output {
width: 50%;
float:left;
}