-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmark.css
120 lines (97 loc) · 2.5 KB
/
mark.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
/*
Author: Mark Kelly
Date: 03/03/2016
File Name: mark.css
*/
#btnPrint { /* Print rental agreement button */
width: 250px;
margin-left: 300px;
}
#rentalForm { /* Rental form */
width: 950px;
padding: 20px;
}
/*-------- Report screen --------------*/
#rentalReport { /* Rental report form */
width: 950px;
padding: 20px;
}
/* Client info buttons in table rows */
.btnClientInfo {
float: right;
}
/* For company name data on report table */
.tdAlignLeft {
width: 330px;
text-align: left;
}
/* For styling table headers on report screen */
#companyName { /* Rental report table head */
border: 2px solid #008CBA; /* Blue */
width: 330px;
}
/* For styling table headers on report screen */
#dateOfRental { /* Rental report table head */
border: 2px solid #008CBA; /* Blue */
width: 180px;
}
/* For styling table headers on report screen */
#durationOfRental { /* Rental report table head */
border: 2px solid #008CBA; /* Blue */
width: 180px;
}
/* For styling table headers on report screen */
#costOfRental { /* Rental report table head */
border: 2px solid #008CBA; /* Blue */
width: 196px;
}
/*-------- Rental screen --------------*/
#companyFieldset { /* Company details fieldset */
width: 100%;
}
/* Arrange content on Rental screen */
#rentalContentLeft { /* Content in left column on Rental screen */
float: left;
width: 50%;
}
/* Arrange content on Rental screen */
#rentalContentRight { /* Content in right column on Rental screen */
float: left;
width: 50%;
}
.fieldsetRight { /* for floating fieldsets right */
float: right;
}
#rentalButtons { /* for buttons on rental screen */
clear: both;
float: right;
}
/* For styling table headers on rental screen */
#tdModelName { /* for table headers on rental screen */
width: 250px;
text-align: left;
}
/* For styling table headers on rental screen */
#thModelName { /* for table headers on rental screen */
border: 2px solid #008CBA; /* Blue */
width: 266px;
}
/* For styling table headers on rental screen */
.carTable { /* for table headers on rental screen */
border: 2px solid #008CBA; /* Blue */
width: 130px;
}
/* For styling table headers on rental screen */
#thRegNo { /* for table headers on rental screen */
border: 2px solid #008CBA; /* Blue */
padding-right: 20px;
}
/*-------- Rental Agreement Screen --------*/
.rentalAgreement { /* Rental agreement form */
width: 850px;
padding: 60px;
margin: 20px 0 10px 0;
}
#agreementLogo { /* for logo on rental agreement screen */
margin-left: 325px;
}