2020-12-30 22:20:14 -05:00
|
|
|
/* layout */
|
|
|
|
|
header, #drives, #services, footer {
|
|
|
|
|
clear: both;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
.drive {
|
|
|
|
|
float: left;
|
2021-02-11 22:02:06 -05:00
|
|
|
width: 20%;
|
2020-12-30 22:20:14 -05:00
|
|
|
}
|
|
|
|
|
.chart {
|
|
|
|
|
height: 80%;
|
|
|
|
|
width: 80%;
|
|
|
|
|
viewBox: 0 0 20 20;
|
|
|
|
|
}
|
|
|
|
|
circle {
|
|
|
|
|
cx: 10;
|
|
|
|
|
cy: 10;
|
|
|
|
|
}
|
|
|
|
|
.pie {
|
2021-02-11 22:02:06 -05:00
|
|
|
fill: #bbb;
|
2020-12-30 22:20:14 -05:00
|
|
|
r: 10;
|
|
|
|
|
}
|
|
|
|
|
.piece {
|
|
|
|
|
stroke: #312c4c;
|
|
|
|
|
r: 5;
|
|
|
|
|
fill: transparent;
|
|
|
|
|
stroke-width: 10;
|
|
|
|
|
transform: rotate(-90) translate(-20);
|
|
|
|
|
}
|
|
|
|
|
h5 {
|
|
|
|
|
text-align: left;
|
|
|
|
|
margin: 0.5em 3em;
|
|
|
|
|
}
|
|
|
|
|
em {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
.service {
|
|
|
|
|
float: left;
|
2021-02-11 22:02:06 -05:00
|
|
|
width: 25%;
|
2020-12-30 22:20:14 -05:00
|
|
|
}
|
2021-03-15 18:26:02 -04:00
|
|
|
.logo {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-12-30 22:20:14 -05:00
|
|
|
|
|
|
|
|
/* breakpoints at 850px and 475px */
|
|
|
|
|
@media screen and (max-width: 850px) {
|
|
|
|
|
.drive {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media screen and (max-width: 475px) {
|
|
|
|
|
.drive {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.service {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|