-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (85 loc) · 1.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
@page
{
/* this affects the margin in the printer settings */
margin: 10mm 20mm 0mm 20mm;
}
body {
font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
}
.title {
width:900px;
overflow:hidden;
}
.name {
width:180px;
padding:15px;
display:inline-block;
}
.address {
line-height:20px;
padding:10px;
padding-left:130px;
width:190px;
display:inline-block;
}
.blackLine {
background-color:#000;
color:#000;
display:block;
width:99%;
height:1px;
float:right;
}
.section {
line-height:20px;
padding:10px;
width:850px;
}
ul {
display: block;
list-style-type: disc;
margin-top: 10px;
margin-bottom: 1 em;
margin-left: 0;
margin-right: 0;
padding-left: 40px;
line-height:30px;
}
ul.embedded {
list-style-type: circle;
}
h2 {
padding:5px;
font-size: 14pt;
}
h1 {
font-size: 18pt;
padding-bottom:5px;
}
a {
color:BLACK;
line-height:20px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
b {
font-weight:bold;
}
/* Print styles */
@media print
{
tr, td, th {page-break-inside:avoid}
thead {display:table-header-group}
.NoPrint {visibility:hidden; display:none}
a {color:#000000}
}