-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
129 lines (104 loc) · 1.99 KB
/
main.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
129
#main{
display: grid;
justify-content: center;
align-content: center;
grid-template-columns: repeat(1, 100%);
grid-template-rows: auto;
grid-template-areas:
"inputs"
"outputs"
"info";
gap: 0.5em;
}
@media (min-width: 50em) {
#main{
grid-template-columns: repeat(1, 50em);
grid-template-rows: auto;
gap: 1em;
}
}
@media (min-width: 80em) {
#main{
grid-template-columns: repeat(3, 25em);
grid-template-rows: auto minmax(3em, 1fr);
grid-template-areas:
"inputs outputs outputs"
"info outputs outputs";
gap: 1em;
}
}
#inputs{
grid-area: inputs;
}
#info{
grid-area: info;
}
#outputs{
grid-area: outputs;
}
.result .additional-biomarkers, .result .missing-biomarkers{
font-size: 0.8em;
margin: 0.5em;
}
#common-biomarkers{
padding: 0.5em;
margin: 0.5em;
color: #333;
font-size: 0.8em;
}
.biomarker{
display: inline-block;
padding: 0.2em 0.5em;
margin-bottom: 0.15em;
border-radius: 0.2em;
background-color: #ddd;
}
.result{
background-color: #fafafa;
padding: 0.5em;
margin: 0.5em;
border-radius: 0.2em;
border: 1px solid #bbb;
}
.suggested_tests{
border-collapse: collapse;
width: 100%;
}
.suggested_tests td a{
text-decoration: none;
}
.suggested_tests th{
font-size: 0.8em;
color: #555;
font-weight: bold;
}
.suggested_tests thead tr th:nth-child(2){
width: 12ch;
}
.suggested_tests th, .suggested_tests td{
padding: 0.3em 0.3em;
text-align: right;
}
.not_venous_only{
color: #aaa;
}
.suggested_tests .total-row{
font-style: italic;
border-top: 1px #aaa solid;
}
#biomarkers-label, #providers-label{
display: block;
font-weight: bold;
text-align: center;
padding: 0.2em;
}
#providers-label{
margin-top: 1em;
}
#biomarkers-select, #providers-select{
width:100%;
display: block;
}
#inputs input[type=checkbox]{
margin: 1em 0 0 0.5em;
}