-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
113 lines (105 loc) · 1.91 KB
/
app.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
/* The header and footer styling are copied directly from the ucum project */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857;
position: static;
margin: 0;
}
/* main page content (not including header/footer) */
div.page-content {
margin-left:10px;
margin-right: 10px;
margin-bottom: 50px;
}
#show-more-less {
display: none;
}
div.summary {
margin-top: 5px;
}
div.content-block, div.summary {
margin-left:20px;
margin-right: 20px;
}
/* section title */
hr {
margin-top: 0;
margin-bottom: 10px;
}
div.sectionBox {
border: 3px solid #ddd;
border-radius: 25px;
margin: 25px;
padding:0px 25px 25px 25px;
width: auto;
min-width: 500px;
}
/* The input block in a table */
table.input {
font-weight: bold;
margin-left:20px;
}
table.input td {
padding: 0.5em;
}
th.input-label {
text-align: right;
}
td.results {
font-weight:normal;
background-color: lightgray;
}
input {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
#loincCol, #unitCol {
border-radius: 7px;
border: 2px solid #17b4e3;
padding-left: 5px;
}
/* Styles for the header */
#header {
position: relative;
font-size: 12px;
font-family: 'Droid Sans',Arial,Helvetica,sans-serif;
color: #202020;
border-top: 2px solid transparent;
border-bottom: 7px solid #17b4e3;
line-height: normal;
padding-bottom: 24px;
}
#site-logo {
position: relative;
margin-top: 4px;
font-size: 18px;
display: block;
margin-bottom: 8px;
}
#site-logo img {
float: left;
margin-right: 5px;
margin-left: 5px;
border-right: 1px solid #0BACB6;
padding-right: 5px;
height: 81px;
width: 81px;
}
#siteNameBox {
margin-top: 25px;
margin-left: 5px;
}
#siteName {
font-size: 300%;
}
/* End of styles for the header */
a {
color: #337ab7;
text-decoration: none;
}
a:focus, a:hover {
text-decoration: underline;
color: rgb(51, 51, 51);
}