134 lines
2.5 KiB
SCSS
134 lines
2.5 KiB
SCSS
$dark-blue: #002554;
|
|
$medium-blue: #004990;
|
|
$light-blue: #007cbe;
|
|
$hover-blue: #25b3ff;
|
|
.summary {
|
|
background: linear-gradient(
|
|
180deg,
|
|
rgb(0 37 84 / 100%) 0%,
|
|
rgb(0 124 190 / 100%) 50%,
|
|
rgb(255, 255, 255) 100%
|
|
);
|
|
background-color: transparent;
|
|
overflow-y: visible;
|
|
width: calc(100% - 300px);
|
|
height: auto;
|
|
display: block;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.summary-image {
|
|
width: 100%;
|
|
height: 200px;
|
|
background: transparent;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.summary-image img {
|
|
width: auto;
|
|
height: 200px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.summary-fieldContainer {
|
|
// width: 100%;
|
|
// min-height: calc(100% - 250px);
|
|
// height: auto;
|
|
// background-color: transparent;
|
|
// display: flex;
|
|
// align-items: flex-start;
|
|
// justify-content: center;
|
|
// flex-wrap: wrap;
|
|
|
|
// below is taken from browse.scss
|
|
width: 90%;
|
|
min-height: calc(100% - 200px);
|
|
height: auto;
|
|
// display: flex;
|
|
// align-self: center;
|
|
// align-items: center;
|
|
// justify-content: center;
|
|
// align-items: center;
|
|
// justify-content: flex-start;
|
|
// justify-self: center;
|
|
// flex-direction: column;
|
|
overflow: hidden;
|
|
background-color: transparent;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
|
|
.summary-grid {
|
|
width: 100%;
|
|
height: 100%; /* Adjust the height of iframes */
|
|
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr); /* 2 columns */
|
|
grid-gap: 10px; /* Adjust the gap between iframes */
|
|
grid-row-gap: 5px; /* Adjust the gap between rows */
|
|
|
|
|
|
// Debug Borders
|
|
border-width: 5px;
|
|
border-style: solid;
|
|
}
|
|
|
|
.summary-iframe {
|
|
width: 100%; /* Ensure iframes take up full width of their grid cell */
|
|
height: 300px; /* Adjust the height of iframes */
|
|
|
|
// Debug Borders
|
|
border-width: 5px;
|
|
border-style: solid;
|
|
}
|
|
|
|
// .summary-iframe {
|
|
// width: 400px;
|
|
// height: 400px;
|
|
// min-height: 1px;
|
|
// background: transparent;
|
|
// margin: 10px;
|
|
// display: block;
|
|
// }
|
|
|
|
// .summary-fieldContainer-pp {
|
|
// width: 25%;
|
|
// height: 300px;
|
|
// border-radius: 20px;
|
|
// text-align: center;
|
|
// padding: 10px;
|
|
// }
|
|
|
|
.summary-fieldContainer-graph {
|
|
width: 25%;
|
|
}
|
|
|
|
|
|
.summary-dashboard {
|
|
width: 100%;
|
|
height: 900px;
|
|
border-radius: 20px;
|
|
text-align: center;
|
|
padding: 10px;
|
|
}
|
|
|
|
.summary-title {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
color: $dark-blue;
|
|
margin: 10px;
|
|
}
|
|
|
|
// .summary-fieldContainer-dashboard {
|
|
// width: 100%;
|
|
// height: 300px;
|
|
// border-radius: 20px;
|
|
// text-align: center;
|
|
// padding: 10px;
|
|
// } |