f1vis/css/main.css

39 lines
645 B
CSS
Raw Normal View History

/*
* 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;
}
.content-box {
2017-11-15 21:01:28 +01:00
padding: 3rem 1.5rem;
text-align: center;
}
.chart-box {
border: 1px solid grey;
}
/* 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
}