2017-11-19 14:57:53 +01:00
|
|
|
/*
|
|
|
|
* As you may have guessed, a little custom css is part of our project.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 21:01:28 +01:00
|
|
|
body {
|
|
|
|
padding-top: 5rem;
|
|
|
|
}
|
|
|
|
|
2017-11-16 23:57:21 +01:00
|
|
|
.content-box {
|
2017-12-29 21:00:37 +01:00
|
|
|
padding: 1rem 0.5rem;
|
2017-11-15 21:01:28 +01:00
|
|
|
text-align: center;
|
2017-11-16 23:57:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.chart-box {
|
|
|
|
border: 1px solid grey;
|
|
|
|
}
|
2017-11-18 12:49:33 +01:00
|
|
|
|
|
|
|
/* This container will allow scaling svg, so we don't need to care about it in d3.js */
|
|
|
|
.svg-container {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
padding-bottom: 100%; /* aspect ratio */
|
|
|
|
vertical-align: top;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-content-responsive {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0; /* not 10px, but 0 instead */
|
|
|
|
left: 0;
|
|
|
|
}
|
2017-12-11 01:26:27 +01:00
|
|
|
|
|
|
|
.line {
|
|
|
|
fill: none;
|
2017-12-15 14:00:44 +01:00
|
|
|
stroke-width: 2px;
|
2017-12-11 01:26:27 +01:00
|
|
|
}
|
2017-12-22 09:40:26 +01:00
|
|
|
|
2017-12-29 21:00:37 +01:00
|
|
|
.frame { width: 100%; height: 185px; padding: 4px; border: 2px solid black; }
|
2017-12-22 09:40:26 +01:00
|
|
|
.frame .slidee { margin: 0; padding: 0; height: 100%; list-style: none; }
|
2017-12-29 21:00:37 +01:00
|
|
|
.frame .slidee li { float: left; margin: 0 5px 0 0; padding: 0; width: 150px; height: 100%; border: 2px solid gray; }
|
2017-12-22 09:40:26 +01:00
|
|
|
|
|
|
|
.scrollbar {
|
|
|
|
width: 100%;
|
2017-12-29 21:00:37 +01:00
|
|
|
height: 16px;
|
|
|
|
margin-top: 4px;
|
2017-12-22 09:40:26 +01:00
|
|
|
background-color: hsl(0, 0%, 94.1%);
|
2017-12-29 21:00:37 +01:00
|
|
|
border: 1px solid hsl(0, 0%, 50.0%);
|
2017-12-22 09:40:26 +01:00
|
|
|
}
|
|
|
|
.scrollbar .handle {
|
|
|
|
width: 100px; /* overriden if dynamicHandle: 1 */
|
|
|
|
height: 100%;
|
|
|
|
background: #222;
|
|
|
|
}
|
|
|
|
|
2017-12-29 16:55:54 +01:00
|
|
|
.coursename {
|
|
|
|
font-size: 8pt;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.courseimagecontainer {
|
|
|
|
height: 75%;
|
|
|
|
width: 100%;
|
|
|
|
height: 7em;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.courseimage {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|