File size: 1,526 Bytes
6d12932 |
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 |
/* Product families should override the following colors with family-specific colors */
:root {
--navbar-bg-color: #505050; /* 2. Header container color */
--footer-bg-color: #707070; /* 3. Footer background color*/
--footer-container-color: #505050; /* 4. Footer container color */
--btn-hover-color: #808080; /* 6. Menu button hover color */
}
/* Generic settings common to all HL7 IGs */
:root {
--stripe-bg-color: #999999; /* 5. Header strip color */
--btn-active-color: #da0c23; /* 7. Menu button active color */
--btn-text-color: #e6e6e6; /* 8. Menu button text color */
--stu-note-background-color: #fff2ff; /* 19. (STU) Note box background color */
--stu-note-border-left-color: #ffa0ff; /* 20. (STU) Note box border color */
}
#hl7-nav {
line-height: 50px;
float: left;
margin-top: 4px;
}
#hl7-nav a {
color: inherit;
}
#hl7-logo {
float: left;
margin-left: 6px;
}
#hl7-search {
line-height: 50px;
float: right;
margin-top: 4px;
color: maroon;
}
#hl7-search a {
color: inherit;
}
/* ----------note-to-balloters styling------*/
.note-to-balloters::before {
white-space: pre;
content: "Note To Balloters\A ";
#background-color: yellow;
color: red;
font-weight: bold;
}
.note-to-balloters, .stu-note{
margin: 5px;
padding: 10px;
border-left-style: solid;
}
.stu-note::before {
white-space: pre;
content: "STU Note\A ";
#background-color: yellow;
color: red;
font-weight: bold;
} |