2017-04-03 14:19:22 +02:00
|
|
|
$dark-grey: #333333;
|
2017-04-03 17:04:31 +02:00
|
|
|
$light-grey: #999999;
|
2017-03-28 15:42:48 +02:00
|
|
|
$blue: rgba(61, 149, 236, 1);
|
|
|
|
$blue-hover: rgba(61, 149, 236, 0.8);
|
2017-04-03 14:19:22 +02:00
|
|
|
|
|
|
|
$default-space: 15px;
|
|
|
|
|
|
|
|
$new-h1-margin-bottom: 4 * $default-space;
|
2017-05-09 17:09:35 +02:00
|
|
|
$new-h2-margin-bottom: 3 * $default-space;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-05-09 17:09:35 +02:00
|
|
|
.new-h1,
|
|
|
|
.new-h2 {
|
2017-04-03 14:19:22 +02:00
|
|
|
color: $dark-grey;
|
|
|
|
text-align: center;
|
2017-05-22 16:56:09 +02:00
|
|
|
font-weight: bold;
|
2017-05-09 17:09:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.new-h1 {
|
|
|
|
margin-bottom: $new-h1-margin-bottom;
|
2017-05-22 16:56:09 +02:00
|
|
|
font-size: 41px;
|
2017-04-03 14:19:22 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 17:09:35 +02:00
|
|
|
.new-h2 {
|
|
|
|
margin-bottom: $new-h2-margin-bottom;
|
|
|
|
font-size: 36px;
|
|
|
|
}
|
|
|
|
|
2017-04-03 14:19:22 +02:00
|
|
|
$statistiques-padding-top: $default-space * 2;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-04-03 14:19:22 +02:00
|
|
|
.statistiques {
|
|
|
|
width: 1040px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding-top: $statistiques-padding-top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stat-cards {
|
|
|
|
.stat-card:nth-of-type(even) {
|
|
|
|
margin-right: 0px;
|
2017-03-07 18:09:09 +01:00
|
|
|
}
|
|
|
|
}
|
2017-04-03 14:19:22 +02:00
|
|
|
|
|
|
|
$stat-card-margin-bottom: 3 * $default-space;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-04-03 14:19:22 +02:00
|
|
|
.stat-card {
|
2017-05-22 16:56:09 +02:00
|
|
|
padding: 15px;
|
2017-04-03 14:19:22 +02:00
|
|
|
margin-bottom: $stat-card-margin-bottom;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: none;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
$stat-card-half-horizontal-spacing: 4 * $default-space;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-04-03 14:19:22 +02:00
|
|
|
.stat-card-half {
|
|
|
|
width: calc((100% - #{$stat-card-half-horizontal-spacing}) / 2);
|
|
|
|
margin-right: 3 * $default-space;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stat-card-title {
|
|
|
|
color: $dark-grey;
|
|
|
|
font-size: 26px;
|
2017-05-22 16:56:09 +02:00
|
|
|
font-weight: bold;
|
2017-03-28 15:42:48 +02:00
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
$segmented-control-margin-top: $default-space;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-03-28 15:42:48 +02:00
|
|
|
.segmented-control {
|
|
|
|
border-radius: 36px;
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
font-size: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: $segmented-control-margin-top;
|
|
|
|
}
|
|
|
|
|
|
|
|
$segmented-control-item-horizontal-padding: $default-space;
|
|
|
|
$segmented-control-item-border-radius: 2 * $default-space;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-03-28 15:42:48 +02:00
|
|
|
.segmented-control-item {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 15px;
|
|
|
|
border: 2px solid $blue;
|
|
|
|
margin-right: -2px;
|
|
|
|
padding-left: $segmented-control-item-horizontal-padding;
|
|
|
|
padding-right: $segmented-control-item-horizontal-padding;
|
|
|
|
color: $blue;
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
border-radius: $segmented-control-item-border-radius 0px 0px $segmented-control-item-border-radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
border-radius: 0px $segmented-control-item-border-radius $segmented-control-item-border-radius 0px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $blue-hover;
|
2017-04-11 16:36:03 +02:00
|
|
|
color: #FFFFFF;
|
2017-03-28 15:42:48 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.segmented-control-item-active {
|
|
|
|
background-color: $blue;
|
2017-04-11 16:36:03 +02:00
|
|
|
color: #FFFFFF;
|
2017-04-03 14:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.chart-container {
|
|
|
|
margin-top: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-04-03 17:04:31 +02:00
|
|
|
|
|
|
|
$big-number-card-padding: 2 * $segmented-control-item-border-radius;
|
2017-04-11 17:06:30 +02:00
|
|
|
|
2017-04-03 17:04:31 +02:00
|
|
|
.big-number-card {
|
|
|
|
padding: $big-number-card-padding;
|
|
|
|
}
|
|
|
|
|
|
|
|
.big-number-card-title {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 auto;
|
|
|
|
color: $light-grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.big-number-card-number {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 90px;
|
|
|
|
line-height: 90px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $blue;
|
|
|
|
}
|