|
1 | 1 |
|
2 | 2 | .container { |
3 | | - margin-top: 12px; |
| 3 | + margin-left: 0; |
| 4 | + margin-top: 12px; |
4 | 5 | } |
5 | 6 |
|
6 | 7 | .dataTable { |
7 | | - margin-top: 24px; |
8 | | - margin-bottom: 24px; |
| 8 | + display: grid; |
| 9 | + grid-template-columns: max(200px) 1fr; |
| 10 | + gap: 0px; |
| 11 | + border: 1px solid #e0e0e0; |
| 12 | +} |
| 13 | + |
| 14 | +@media only screen and (max-width: 600px) { |
| 15 | + .dataTable { |
| 16 | + display: block; |
| 17 | + } |
| 18 | +} |
| 19 | + |
| 20 | +.dataTable > * { |
| 21 | + padding: 8px; |
| 22 | + font-size: smaller; |
| 23 | + border: 1px solid #e0e0e0; |
9 | 24 | border-collapse: collapse; |
10 | 25 | } |
11 | 26 |
|
12 | | -.dataTable th, .dataTable td { |
13 | | - min-width: 100px; |
14 | | - text-align: left; |
15 | | - vertical-align: top; |
16 | | - border: 1px solid black; |
17 | | - padding: 8px 8px 8px 8px; |
18 | | - font-size: smaller; |
| 27 | +.sectionTitle { |
| 28 | + background-color: #f5f5f5; |
| 29 | + font-weight: bold; |
19 | 30 | } |
20 | 31 |
|
| 32 | + |
21 | 33 | .fhirTable { |
22 | | - border-collapse: collapse; |
23 | | - width: 100%; |
| 34 | + border-collapse: collapse; |
| 35 | + width: 100%; |
24 | 36 | } |
25 | 37 |
|
26 | 38 | .fhirTable td, .fhirTable th { |
27 | | - text-align: left; |
28 | | - vertical-align: middle; |
29 | | - padding: 2px 8px 2px 2px; |
30 | | - font-size: 100%; |
31 | | - border-top: none; |
32 | | - border-left: none; |
33 | | - border-right: none; |
34 | | - border-bottom: none; |
| 39 | + text-align: left; |
| 40 | + vertical-align: middle; |
| 41 | + padding: 2px 8px 2px 2px; |
| 42 | + font-size: 100%; |
| 43 | + border-top: 1px solid lightgray; |
35 | 44 | } |
36 | 45 |
|
37 | 46 | .fhirTable th { |
38 | | - color: gray; |
39 | | -} |
40 | | - |
41 | | -.fhirTable td { |
42 | | - border-top: 1px solid lightgray; |
| 47 | + border-top: none; |
43 | 48 | } |
44 | 49 |
|
45 | 50 | .narrative { |
46 | | - background-color: whitesmoke; |
47 | | - padding: 8px 8px 8px 8px; |
| 51 | + background-color: whitesmoke; |
| 52 | + padding: 8px; |
48 | 53 | } |
49 | 54 |
|
50 | 55 | .narrative table { |
51 | | - border-collapse: collapse; |
52 | | - width: 100%; |
| 56 | + border-collapse: collapse; |
| 57 | + width: 100%; |
53 | 58 | } |
54 | 59 |
|
55 | 60 | .narrative th, .narrative td { |
56 | | - padding: 4px 4px 4px 4px; |
57 | | - font-size: unset; |
| 61 | + padding: 4px; |
| 62 | + font-size: unset; |
| 63 | + border: 1px solid lightgray; |
| 64 | +} |
| 65 | + |
| 66 | +.narrative th { |
| 67 | + background-color: #f7f7f7; |
| 68 | + border-bottom: 2px solid #d0d0d0; |
58 | 69 | } |
59 | 70 |
|
60 | 71 | .patCell { |
61 | | - font-weight: bold; |
| 72 | + font-weight: bold; |
| 73 | +} |
| 74 | + |
| 75 | +.toggleButton { |
| 76 | + float: right; |
| 77 | + margin-top: 6px; |
| 78 | +} |
| 79 | + |
| 80 | +@media only screen and (max-width: 600px) { |
| 81 | + .toggleButton { |
| 82 | + display: flex; |
| 83 | + width: 100%; |
| 84 | + height: 100%; |
| 85 | + justify-content: right; |
| 86 | + float: none; |
| 87 | + margin-top: 0px; |
| 88 | + } |
62 | 89 | } |
0 commit comments