blob: a45eb11c926b78a5057ef8f66e974a6fa45f399c (
plain) (
blame)
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
|
.current {
color: red;
}
.dimmedtext {
color: gray;
}
.dimmedtext a {
color: #3344dd;
}
.textright {
width: 100%;
text-align: right;
}
table {
border-collapse: collapse;
}
table, th, td, tr {
border: 1px solid black;
}
@media screen and (min-width: 600px) {
body {
margin-left: 10%;
margin-right: 10%;
}
}
body {
/* font-size: 18px;
line-height: 1.4; */
font-family: sans-serif;
}
|