Remove old css and js

This commit is contained in:
Paul Chavard 2021-01-28 15:27:29 +01:00 committed by Pierre de La Morinerie
parent 16e860e00c
commit a503417298
142 changed files with 156 additions and 1910 deletions

View file

@ -0,0 +1,93 @@
@import "colors";
@import "constants";
.status-overview {
text-align: center;
margin-bottom: $default-padding * 2;
}
.status-timeline {
display: inline-block;
margin-top: $default-padding * 2;
margin-bottom: $default-padding * 2;
border: 1px solid #808080;
border-radius: 3px;
li {
display: inline-block;
padding-top: $default-spacer;
padding-bottom: $default-spacer;
&:first-child {
padding-left: 20px;
}
&:last-child {
padding-right: 20px;
}
&.active {
font-weight: bold;
}
&.active ~ li {
color: $dark-grey;
}
// Arrows
&:not(:last-child)::after {
content: "";
display: inline-block;
margin-left: 10px;
margin-right: 10px;
vertical-align: top;
}
}
}
.status-explanation {
text-align: left;
.brouillon,
.en-construction,
.en-instruction {
max-width: 650px;
margin: auto;
}
p {
margin-bottom: $default-padding;
}
.decision {
font-size: 1.2em;
margin-top: $default-padding * 3;
margin-bottom: $default-padding * 3;
}
.icon {
margin-right: $default-spacer;
}
h3 {
font-weight: bold;
margin-bottom: $default-spacer;
}
blockquote {
quotes: "« " " »" "" "";
margin-bottom: $default-padding * 3;
}
blockquote::before {
content: open-quote;
}
blockquote::after {
content: close-quote;
}
.action {
margin-bottom: $default-padding * 3;
}
}