forked from ucsd-cse-spis-2017/ucsd-cse-spis-2017.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.css
129 lines (100 loc) · 1.79 KB
/
site.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
116
117
118
119
120
121
122
123
124
125
126
127
128
---
layout: null
---
table {
border-collapse: collapse;
}
table * th {
border: 1px solid black;
}
table * td {
border: 1px solid black;
}
.asn_table {
border: 2px solid black;
border-collapse: collapse;
}
.asn_table * td,th {
border: 1px solid black;
border-collapse: collapse;
}
.asn_table * .asn_num {
width: 3em;
}
.asn_table * .asn_ready {
width: 3em;
}
.asn_table * .asn_desc {
width: auto;
}
.asn_table * .asn_date {
width: auto;
font-family: 'Arial Narrow', Arial, sans-serif;
}
@media only screen and (max-device-width: 480px) {
.asn_table * .asn_num {
width: 3em;
}
.asn_table * .asn_ready {
width: 3em;
}
.asn_table * .asn_desc {
width: 5em;
}
.asn_table * .asn_date {
width: 3em;
font-size: 16px;
}
}
.pagebreak {
page-break-before: always;
height: 0.5em;
width: 100%;
border: 1px solid black;
}
@media print {
div.header {display: none; }
div.footer {display: none; }
div.not-ready-warning { display: none; }
body {
font-size: 12px;
font-family: "Times New Roman", serif;
}
.pagebreak {
page-break-before: always;
height: 0.5em;
width: 100%;
border: none;
}
}
tr.not-ready td { color: #ccc; }
div.not-ready-warning {
width:80%;
margin-left:auto;
margin-right:auto;
padding:1em 1em 1em 1em;
margin:1em 1em 1em 1em;
border: 10px outset red;
color: black;
background-color: #ffc;
text-align: left;
}
div.not-ready-warning h2 {
text-align:center;
}
div.not-ready-warning h3 {
text-align:center;
}
div.redbox {
padding: 0.5em;
margin-top: 0.5em;
border: 5px outset #f22;
width:80%;
margin-left: auto;
margin-right:auto;
margin-bottom: 0.5em;
}
h3 { text-align: left; }
.indent {
margin-left:3em;
}