-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (119 loc) · 3 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
123
124
125
body
{
min-width:1300px;
}
canvas { width: 100%; height: 100% }
*{
margin:0;
font-family: 'Chicle', cursive;
letter-spacing: 1px;
font-weight: 100;
outline: none;
}
.dashBoard{
float: left;
width: 100%;
border-bottom: 1px solid #9c5875;
}
h2{
font-weight: 400;
line-height: 20px;
margin-bottom: 10px;
float: left;
}
h3
{
font-weight: 400;
float: left;
width: 100%;
text-align: center;
color: #9c5875;
border-bottom: 1px solid;
}
h4
{
font-weight: 400;
float: left;
width: 100%;
text-align: center;
color: #9c5875;
}
.calcInDiv{
float:left;
margin:10px;
border:1px solid;
width: 312px;
}
.logoBlock{
padding-top:15px;
float: left;
height: 130px;
width:250px;
text-align: center;
vertical-align: middle;
}
.availableStock,.incomingStock,.outgoingStock,.stockStats
{
padding: 0.5%;
float: left;
width:19%;
height: 130px;
border-left: 1px solid #9c5875;
}
.availableStock input,.stockStats input{
background: none;
border: 0px solid;
color: #2b8aca;
font-weight: bold;
}
.textLeft,.inputRight{
float: left;
width:46%;
padding:2%;
}
.buttonDiv{
float: right;
width: 80px;
margin-top: -5px;
margin-bottom: 5px;
}
.textLeft{
color: #9c5875;
}
#calcDiv{
padding: 10px;
}
input {
border-radius: 3px;
border:1px solid #9c5875;
padding: 3px;
}
.btn {
background: #7db5db;
background-image: -webkit-linear-gradient(top, #7db5db, #007bc7);
background-image: -moz-linear-gradient(top, #7db5db, #007bc7);
background-image: -ms-linear-gradient(top, #7db5db, #007bc7);
background-image: -o-linear-gradient(top, #7db5db, #007bc7);
background-image: linear-gradient(to bottom, #7db5db, #007bc7);
-webkit-border-radius: 4;
-moz-border-radius: 4;
border-radius: 5px;
-webkit-box-shadow: 0px 1px 3px #666666;
-moz-box-shadow: 0px 1px 3px #666666;
box-shadow: 0px 1px 3px #666666;
color: #ffffff;
font-size: 14px;
padding: 5px 15px 5px 15px;
text-decoration: none;
border: 0px solid #7db5db;
cursor: pointer;
}
.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}