Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
@import '../global/_variables'; // global variables.
2
@import '../global/components/_mixins'; // global mixings.
3
 
4
/***
5
Invoice page 2
6
***/
7
.invoice-content-2{
8
	background-color: #fff;
9
	padding: 80px 70px;
10
 
11
	// BEGIN : BORDER CONTAINERS
12
	&.bordered{
13
		border:1px solid;
14
		border-color: $general-panel-border-color;
15
	}
16
	// END : BORDERED CONTAINERS
17
 
18
 
19
	.invoice-head{
20
		margin-bottom: 50px;
21
 
22
		.invoice-logo{
23
			text-align: center;
24
 
25
			>img{
26
				float: left;
27
				margin-right: 45px;
28
			}
29
 
30
			>h1{
31
				float: left;
32
				font-size: 17px;
33
				font-weight: 700;
34
				color: #39424a;
35
				margin-top: 48px;
36
			}
37
 
38
		}
39
 
40
		.company-address{
41
			text-align: right;
42
			font-size: 14px;
43
			color: #7e8691;
44
		}
45
	}
46
 
47
	.invoice-title{
48
		font-size: 12px;
49
		font-weight: 600;
50
		letter-spacing: 1px;
51
		color: #9ea8b7;
52
	}
53
 
54
	.invoice-desc{
55
		font-size: 14px;
56
		color: #4e5a64;
57
		font-weight: 600;
58
 
59
		&.inv-address{
60
			font-size: 13px;
61
			color:#7e8691;
62
			font-weight: 400;
63
		}
64
 
65
		&.grand-total{
66
			font-size: 16px;
67
			font-weight: 700;
68
		}
69
	}
70
 
71
	.invoice-cust-add{
72
		margin-bottom: 50px;
73
	}
74
 
75
	.invoice-body{
76
 
77
		.text-center{
78
			text-align: center;
79
		}
80
 
81
		tr:last-child{
82
			border-bottom:1px solid #e7ecf1;
83
		}
84
 
85
		th, td{
86
			vertical-align: middle;
87
			padding-left:40px;
88
			padding-right:40px;
89
 
90
			&:first-child{
91
				padding-left: 0;
92
			}
93
 
94
			&:last-child{
95
				padding-right: 0;
96
			}
97
		}
98
 
99
		h3{
100
			font-size: 14px;
101
			font-weight: 600;
102
			color: #4e5a64;
103
			margin-bottom: 0;
104
		}
105
 
106
		p{
107
			font-size: 13px;
108
			color: #7e8691;
109
		}
110
 
111
	}
112
 
113
	.print-btn{
114
		float:right;
115
		font-size: 14px;
116
		font-weight: 600;
117
		letter-spacing: 1px;
118
	}
119
}
120
 
121
// END
122
 
123
// MOBILE
124
 
125
@media (max-width:1024px){
126
	.invoice-content-2{
127
 
128
		.invoice-head{
129
 
130
			.invoice-logo{
131
 
132
				>img{
133
					width: 130px;
134
    				margin-top: 26px;
135
 
136
				}
137
 
138
			}
139
		}
140
	}
141
}
142
 
143
@media (max-width:991px){
144
	.invoice-content-2{
145
		padding:40px 30px;
146
	}
147
}
148
 
149
@media (max-width:480px){
150
	.invoice-content-2{
151
 
152
		.invoice-head{
153
 
154
			.invoice-logo{
155
				>h1{
156
					margin-top: 10px;
157
				}
158
			}
159
 
160
			.company-address{
161
				font-size: 12px;
162
			}
163
		}
164
	}
165
}