-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtaskbrief.css
More file actions
106 lines (84 loc) · 1.33 KB
/
taskbrief.css
File metadata and controls
106 lines (84 loc) · 1.33 KB
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
@media only screen {
body {
font-style: normal;
font-family: Tahoma, Geneva, sans-serif;
background: #F9F9F9;
color: #404040;
font-size: 0.8em;
}
div.content {
width: 920px;
margin: auto;
padding:20px 30px 10px 30px;
background: #f9F9F9;
}
h1 {
text-align: center;
}
h4 {
display: inline;
font-size: 1.0em;
font-weight: bold;
}
table {
width: 90%;
margin: auto;
border-collapse: collapse;
}
#buttondiv {
float: right;
text-align: right;
}
#warningbox {
width: 85%;
margin: auto;
-ms-overflow-style: none;
}
}
@media only print {
body {
font-style: normal;
font-family: "Times New Roman", Times, serif;
font-size: 12pt;
}
h1 {
font-family: Tahoma, Geneva, sans-serif;
font-size: 16pt;
text-align: center;
}
h4 {
display: inline;
font-weight: bold;
}
input,textarea {
border-style: none;
font-family: "Times New Roman", Times, serif;
font-size: 12pt;
}
table {
width: 100%;
margin: auto;
border-collapse: collapse;
font-size: 10pt;
}
#buttondiv {
display: none;
}
#warningbox {
width: 100%;
margin: auto;
}
}
th, td {
border: 1px solid black;
padding: 2pt;
}
#tasklength {
text-align:center;
}
textarea {
width: 100%;
margin: auto;
height: 10em;
-ms-overflow-style: none;
}