blob: d0cf0b3d1dbeeadfbe75847a811c3659ee1a89c1 (
plain)
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
|
.main {
border: 1px solid black;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-family: arial;
font-size: 16px;
font-weight: bold;
}
.main .details {
font-size: 14px;
font-weight: bold;
}
.footer {
border: 2px solid black;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.banner {
border: 1px solid black;
font-color: red;
}
.interpolation-test {
font-size: 14px;
}
.header {
width: 100%;
}
.main {
width: 100%;
height: 100%;
}
.footer {
width: 100%;
}
@media print {
.v-view {
overflow: visible;
}
}
font-family: arial;
font-size: 16px;
font-weight: bold;
.default .default-inner {
color: green;
}
.custom .custom-inner {
color: green;
}
|