-
Notifications
You must be signed in to change notification settings - Fork 4
/
widgets.less
65 lines (64 loc) · 1.21 KB
/
widgets.less
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
@import "_imports/colors.less";
@import "_imports/mixins.less";
.cpq {
display: block;
position: relative;
h1 {
font-size: 3em;
}
h3 {
font-size: 1.5em
}
.cpq-company {
font-size: 1.5em;
font-weight: bold;
}
.cpq-heading {
font-weight: bold;
text-transform: uppercase;
&.recipient {
font-size: 1.1em;
}
}
.cpq-contact {
.fa {
margin-right: 5px;
}
}
.cpq-summary {
width: 100%;
}
.cpq-items {
width: 100%;
.cpq-items-approve {
width: 50px;
}
.cpq-item-description {
width: 60%;
}
.cpq-items-unit-cost,
.cpq-items-quantity,
.cpq-items-amount,
{
width: (40% / 3);
}
.cpq-item-unit-cost,
.cpq-item-quantity,
.cpq-item-amount {
text-align: right;
}
.cpq-total {
text-align: right;
}
tfoot {
border-top: 1px solid;
}
}
.qrcode-container {
width: 100%;
img.qrcode {
width: 100px;
height: 100px;
}
}
}