2018-10-20 06:33:27 -04:00
|
|
|
/**
|
|
|
|
* Sidebar layout
|
|
|
|
*/
|
2018-09-11 15:59:37 -04:00
|
|
|
.info-container {
|
2020-01-27 12:17:39 -05:00
|
|
|
position: absolute;
|
2020-01-27 12:58:08 -05:00
|
|
|
top: 75px;
|
2020-01-27 12:17:39 -05:00
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2020-01-27 12:58:08 -05:00
|
|
|
z-index: 1001;
|
2020-01-27 12:18:13 -05:00
|
|
|
transition: transform 0.3s;
|
2020-01-27 12:58:08 -05:00
|
|
|
transform: translateX(0);
|
2020-12-27 18:51:32 -05:00
|
|
|
|
|
|
|
width: 65%;
|
|
|
|
min-width: 280px;
|
|
|
|
max-width: 95%;
|
|
|
|
max-width: calc(100vw - 40px);
|
|
|
|
|
|
|
|
border-right: 1px solid #000;
|
2020-01-27 12:58:08 -05:00
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
|
2020-01-27 12:58:08 -05:00
|
|
|
.info-container.offscreen {
|
2020-01-27 12:18:13 -05:00
|
|
|
transform: translateX(-100%);
|
2018-09-11 15:59:37 -04:00
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
|
2020-01-27 12:58:08 -05:00
|
|
|
.info-container-collapse {
|
|
|
|
position: absolute;
|
2020-12-27 18:51:32 -05:00
|
|
|
left: 100%;
|
|
|
|
top: 4rem;
|
|
|
|
|
|
|
|
width: 2rem;
|
2020-01-27 12:58:08 -05:00
|
|
|
padding: 2.5rem 0rem;
|
2020-12-27 18:51:32 -05:00
|
|
|
|
2020-01-27 12:58:08 -05:00
|
|
|
border-radius: 0 .25rem .25rem 0;
|
2020-01-27 12:18:13 -05:00
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
|
|
|
|
@media (min-width: 510px) {
|
|
|
|
.info-container {
|
|
|
|
max-width: 470px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: 734px){
|
2018-09-11 15:59:37 -04:00
|
|
|
.info-container {
|
2020-12-27 18:51:32 -05:00
|
|
|
width: 470px;
|
2018-09-11 15:59:37 -04:00
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 990px){
|
2020-01-27 12:58:08 -05:00
|
|
|
.info-container.offscreen {
|
|
|
|
transform: translateX(0);
|
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
|
2020-01-27 12:58:08 -05:00
|
|
|
.info-container-collapse {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
|
2020-01-27 12:58:08 -05:00
|
|
|
.info-container-inner {
|
2020-12-27 18:51:32 -05:00
|
|
|
width: 100%;
|
2020-01-27 12:58:08 -05:00
|
|
|
height: 100%;
|
2020-12-27 18:51:32 -05:00
|
|
|
overflow-y: scroll;
|
|
|
|
|
2020-01-27 12:58:08 -05:00
|
|
|
background: #fff;
|
2018-09-11 15:59:37 -04:00
|
|
|
}
|
2018-10-01 12:20:25 -04:00
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Icon buttons
|
|
|
|
*/
|
2020-12-27 18:51:32 -05:00
|
|
|
.icon-button {
|
|
|
|
padding: 0;
|
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
display: inline-block;
|
2018-10-25 06:48:25 -04:00
|
|
|
background-color: transparent;
|
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
color: #222;
|
2018-10-25 06:48:25 -04:00
|
|
|
}
|
|
|
|
.icon-button:hover {
|
|
|
|
color: #222;
|
|
|
|
text-decoration: none;
|
2019-08-14 08:32:08 -04:00
|
|
|
cursor: pointer;
|
2018-10-25 06:48:25 -04:00
|
|
|
}
|
2020-12-27 18:51:32 -05:00
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
.icon-button svg {
|
2020-12-27 18:51:32 -05:00
|
|
|
margin-left: 0.3em;
|
2018-10-25 06:48:25 -04:00
|
|
|
background-color: transparent;
|
|
|
|
transition: background-color color 0.2s;
|
2020-12-27 18:51:32 -05:00
|
|
|
font-size: 1.2em;
|
2018-10-25 06:48:25 -04:00
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
color: #222;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-10-25 06:48:25 -04:00
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
/**
|
|
|
|
* Data list sections
|
|
|
|
*/
|
2020-02-03 17:35:32 -05:00
|
|
|
.section-body {
|
|
|
|
margin-top: 0.75em;
|
|
|
|
padding: 0 0.75em 5em 0.75em;
|
2020-04-09 11:10:07 -04:00
|
|
|
min-height: 80vh;
|
2020-02-03 17:35:32 -05:00
|
|
|
}
|
2018-10-20 06:33:27 -04:00
|
|
|
.data-section .h3 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.data-intro {
|
2020-02-03 16:49:45 -05:00
|
|
|
padding: 0 0.5rem 0 0;
|
2019-01-22 14:39:27 -05:00
|
|
|
margin-top: 0.5rem;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
2019-05-02 14:28:34 -04:00
|
|
|
.data-section p {
|
|
|
|
font-size: 1rem;
|
2019-05-28 16:18:36 -04:00
|
|
|
margin: 0.5rem 0;
|
2019-05-02 14:28:34 -04:00
|
|
|
}
|
2019-04-18 12:13:49 -04:00
|
|
|
.data-section ul {
|
2020-02-03 16:49:45 -05:00
|
|
|
padding-left: 1.333rem;
|
2019-05-02 14:28:34 -04:00
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.data-section li {
|
|
|
|
margin-bottom: 0.3rem;
|
2019-04-18 12:13:49 -04:00
|
|
|
}
|
2018-10-20 06:33:27 -04:00
|
|
|
.data-list {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 0.75rem;
|
2018-10-25 06:48:25 -04:00
|
|
|
padding-right: 0.75rem;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
2019-10-15 09:37:23 -04:00
|
|
|
|
2018-10-20 06:33:27 -04:00
|
|
|
.data-list a {
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
.data-list a:focus,
|
|
|
|
.data-list a:active,
|
|
|
|
.data-list a:hover {
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
.data-list dt,
|
|
|
|
.data-section label {
|
|
|
|
font-size: 0.8333rem;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #555;
|
|
|
|
}
|
2018-11-30 10:53:55 -05:00
|
|
|
.data-section input,
|
|
|
|
.data-section textarea,
|
|
|
|
.data-section select {
|
|
|
|
margin: 0 0 0.5em 0;
|
|
|
|
}
|
2020-02-03 17:35:32 -05:00
|
|
|
.data-section input[type="checkbox"] {
|
|
|
|
position: static;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
2018-10-20 06:33:27 -04:00
|
|
|
.data-list dd {
|
|
|
|
margin: 0 0 0.5rem;
|
|
|
|
line-height: 1.5;
|
2019-08-06 17:12:09 -04:00
|
|
|
white-space: pre;
|
2018-10-20 06:33:27 -04:00
|
|
|
}
|
|
|
|
.data-list .no-data {
|
|
|
|
color: #999;
|
|
|
|
}
|
2018-10-25 09:36:52 -04:00
|
|
|
.data-list dd ul {
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2021-03-16 15:02:11 -04:00
|
|
|
.data-section .data-entry-list {
|
2019-08-23 12:35:17 -04:00
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
}
|
2021-03-16 15:02:11 -04:00
|
|
|
.data-entry-list li {
|
2019-08-23 12:35:17 -04:00
|
|
|
border-color: #6c757d;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2021-03-16 15:02:11 -04:00
|
|
|
|
|
|
|
.data-entry-list-button {
|
|
|
|
width: 2.5em;
|
|
|
|
}
|