727 lines
13 KiB
SCSS
727 lines
13 KiB
SCSS
@import "compass/reset";
|
||
|
||
@import url('https://fonts.googleapis.com/css?family=Dosis:300,500,700|Podkova:700');
|
||
|
||
$fond: #8fcc33;
|
||
$barre: darken($fond, 10%);
|
||
$compl: #f99b20;
|
||
$jaune: #fff60a;
|
||
$vert: #1a82dd;//09f7b0;
|
||
$rouge: #f70978;
|
||
$staticurl: "/experiens/static/";
|
||
|
||
$textfont: 'Dosis', sans-serif;
|
||
$textfontsize: 19px;
|
||
$headfont: Podkova, serif;
|
||
|
||
|
||
body {
|
||
background: $fond;
|
||
font-family: $textfont;
|
||
line-height: 1.4;
|
||
font-size: $textfontsize;
|
||
font-weight: 300;
|
||
}
|
||
|
||
h1, h2, h3, h4 {
|
||
font-family: $headfont;
|
||
}
|
||
|
||
h1 {
|
||
font-size: 2.3em;
|
||
}
|
||
|
||
h2 {
|
||
font-size: 1.8em;
|
||
}
|
||
|
||
h3 {
|
||
font-size: 1.4em;
|
||
}
|
||
|
||
b, strong, em {
|
||
font-weight: bold;
|
||
}
|
||
|
||
.beta {
|
||
opacity: 0.5;
|
||
font-size: 0.7em;
|
||
display: inline-block;
|
||
transform: translate(-1em, 0.6em) rotate(-15deg);
|
||
}
|
||
|
||
a {
|
||
font-weight: bold;
|
||
color: $compl * 0.9;
|
||
text-decoration: none;
|
||
}
|
||
|
||
header {
|
||
background: $barre;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
|
||
nav ul {
|
||
display: inline-flex;
|
||
|
||
li {
|
||
display: inline-table;
|
||
|
||
a {
|
||
text-align: center;
|
||
display: table-cell;
|
||
padding: 0 20px;
|
||
height: 90px;
|
||
vertical-align: middle;
|
||
color: lighten($fond, 40%);
|
||
|
||
&:hover {
|
||
background: $barre * 0.6;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
a {
|
||
color: #fff;
|
||
text-decoration: none;
|
||
}
|
||
|
||
h1 {
|
||
padding: 15px;
|
||
word-wrap: none;
|
||
}
|
||
}
|
||
|
||
p {
|
||
|
||
}
|
||
|
||
.content {
|
||
background: #efefef;
|
||
max-width: 900px;
|
||
padding: 30px;
|
||
margin: 15px auto;
|
||
|
||
p {
|
||
margin: 0.5em 0;
|
||
}
|
||
}
|
||
|
||
// Index
|
||
|
||
.homeh1 {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
font-size: 1.2em;
|
||
padding-bottom: 10px;
|
||
border-bottom: 3px solid #000;
|
||
margin-bottom: 15px;
|
||
|
||
& > * {
|
||
display: inline-block;
|
||
}
|
||
|
||
}
|
||
|
||
// Liste des stages
|
||
|
||
.stagelist {
|
||
|
||
li {
|
||
display: table;
|
||
width: 100%;
|
||
//border: 1px solid $fond * 1.3;
|
||
background: #fff;
|
||
margin: 12px;
|
||
|
||
& > *, &:before {
|
||
display: table-cell;
|
||
vertical-align: middle;
|
||
padding: 15px;
|
||
}
|
||
a {
|
||
width: auto;
|
||
&:hover {
|
||
background: #ccc;
|
||
}
|
||
}
|
||
&:before {
|
||
content: "";
|
||
text-align: right;
|
||
width: 150px;
|
||
opacity: 0.8;
|
||
color: #000;
|
||
}
|
||
&.stage-brouillon:before {
|
||
content: "Brouillon";
|
||
background: lighten($rouge, 10%);
|
||
}
|
||
&.stage-publie:before {
|
||
content: "Publié";
|
||
background: lighten($vert, 10%);
|
||
}
|
||
&.stage-ajout:before {
|
||
content:"+";
|
||
color: #000;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Les stages
|
||
|
||
|
||
ul.infos {
|
||
margin: 0 -3px;
|
||
|
||
li {
|
||
display: inline-block;
|
||
padding: 5px;
|
||
margin: 3px;
|
||
font-weight: normal;
|
||
font-size: 0.9em;
|
||
border-radius: 4px;
|
||
|
||
&.thematique {
|
||
background-color: $vert;
|
||
color: #fff;
|
||
}
|
||
&.matiere {
|
||
color: #fff;
|
||
background-color: $fond;
|
||
}
|
||
&.lieu {
|
||
color: #fff;
|
||
background-color: $compl;
|
||
}
|
||
}
|
||
}
|
||
|
||
article.stage {
|
||
font-weight: normal;
|
||
|
||
h2 {
|
||
background: desaturate(lighten($jaune, 15%), 40%);
|
||
color: #fff;
|
||
padding: 10px 20px;
|
||
margin: -20px;
|
||
margin-bottom: 25px;
|
||
text-shadow: -3px 3px 0 rgba(#000, 0.3);
|
||
}
|
||
h3 {
|
||
border-bottom: 2px solid desaturate($compl, 40%);
|
||
margin-left: -25px;
|
||
margin-top: 30px;
|
||
padding: 5px;
|
||
padding-left: 20px;
|
||
color: #000;
|
||
text-shadow: -3px 3px 0 rgba(#000, 0.1);
|
||
//margin-right: 25px;
|
||
}
|
||
|
||
#stage-map {
|
||
height: 300px;
|
||
width: 100%;
|
||
}
|
||
|
||
section {
|
||
background: #eee;
|
||
padding: 14px;
|
||
max-width: 600px;
|
||
margin: 30px auto;
|
||
|
||
&:first-child {
|
||
margin-top: 0;
|
||
h3 {
|
||
margin-top: 0;
|
||
}
|
||
}
|
||
|
||
&.misc {
|
||
padding-top: 0;
|
||
}
|
||
|
||
.chapo, .avis-texte {
|
||
margin-bottom: 15px;
|
||
background: #fff;
|
||
padding: 20px;
|
||
}
|
||
.chapo {
|
||
font-size: 1.1em;
|
||
font-weight: 500;
|
||
font-variant: small-caps;
|
||
}
|
||
.avis-texte {
|
||
border-left: 1px solid #ccc;
|
||
padding-left: 15px;
|
||
}
|
||
|
||
.plusmoins {
|
||
max-width: 600px;
|
||
margin: 15px auto;
|
||
|
||
& > div {
|
||
display: table;
|
||
width: 100%;
|
||
|
||
&:before {
|
||
content: " ";
|
||
width: 100px;
|
||
font-size: 1.8em;
|
||
font-weight: bold;
|
||
text-align: right;
|
||
padding-right: 12px;
|
||
}
|
||
|
||
& > *, &:before {
|
||
display:table-cell;
|
||
}
|
||
|
||
& > div {
|
||
padding: 15px;
|
||
color: #fff;
|
||
h4 {
|
||
font-weight: normal;
|
||
margin-left: -5px;
|
||
font-size: 0.9em;
|
||
opacity: 0.9;
|
||
}
|
||
p {
|
||
font-weight: bold;
|
||
margin: 2px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.plus {
|
||
& > div {
|
||
background: darken($vert, 5%);
|
||
}
|
||
&:before {
|
||
content: "Les +";
|
||
vertical-align: bottom;
|
||
color: darken($vert, 10%);
|
||
}
|
||
}
|
||
.moins {
|
||
& > div {
|
||
background: darken($rouge, 5%);
|
||
}
|
||
&:before {
|
||
content: "Les -";
|
||
vertical-align: top;
|
||
color: darken($rouge, 10%);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.edit-box {
|
||
background: #eee;
|
||
margin: 10px;
|
||
padding: 10px 20px;
|
||
text-align: center;
|
||
|
||
&.public {
|
||
background: lighten($vert, 40%);
|
||
border: 1px solid $vert * 0.7;
|
||
}
|
||
|
||
&.prive {
|
||
background: lighten($rouge, 40%);
|
||
border: 1px solid $rouge * 0.7;
|
||
}
|
||
|
||
}
|
||
|
||
.article-wrapper {
|
||
display: table;
|
||
.toc-wrapper, article {
|
||
display: table-cell;
|
||
vertical-align: top;
|
||
}
|
||
.toc-wrapper {
|
||
max-width: 250px;
|
||
width: 25%;
|
||
}
|
||
.toc {
|
||
position: -webkit-sticky;
|
||
position: sticky;
|
||
top: 0;
|
||
a {
|
||
color: inherit;
|
||
font-weight: normal;
|
||
}
|
||
.toc-h1 {
|
||
|
||
}
|
||
.toc-h3 a {
|
||
font-weight: 300;
|
||
}
|
||
.toc-active a {
|
||
color: $fond;
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
// Formulaires
|
||
|
||
input, textarea, select, div.tinymce {
|
||
background: #fff;
|
||
font-size: 1em;
|
||
font-family: $textfont;
|
||
line-height: 1.3em;
|
||
font-weight: 500;
|
||
padding: 5px;
|
||
|
||
&:focus, &.mce-edit-focus {
|
||
background-color: lighten($fond, 40%);
|
||
outline: none;
|
||
}
|
||
}
|
||
|
||
input[type='text'], input[type='password'],
|
||
input[type='email'], textarea, select {
|
||
border:none;
|
||
border-bottom: 1px solid $fond;
|
||
width: 100%;
|
||
max-width: 100%;
|
||
transition: border 1s ease-out, background 1s ease-out;
|
||
}
|
||
|
||
input[type="submit"],
|
||
.btn {
|
||
font: $textfontsize $textfont;
|
||
background-color: $fond;
|
||
color: #fff;
|
||
border: 1px solid $fond * 0.7;
|
||
border-radius: 5px;
|
||
padding: 8px 12px;
|
||
display: block;
|
||
margin-left: auto;
|
||
margin-right: 0;
|
||
}
|
||
|
||
p input[type="submit"],
|
||
p .btn,
|
||
h1 .btn {
|
||
display:inline-block;
|
||
}
|
||
|
||
.edit-btn {
|
||
border-color:darken($jaune, 30%);
|
||
color: #000;
|
||
background: url($staticurl + "images/edit.svg") no-repeat right center;
|
||
background-color:lighten($jaune, 10%);
|
||
background-origin: content-box;
|
||
background-size: contain;
|
||
|
||
&:after {
|
||
content:"";
|
||
width: 30px;
|
||
display: inline-block;
|
||
}
|
||
}
|
||
|
||
select {
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
width: auto;
|
||
margin-right: 5px;
|
||
cursor: pointer;
|
||
}
|
||
|
||
textarea, div.tinymce {
|
||
border:none;
|
||
border-left: 1px solid $fond;
|
||
height: auto;
|
||
min-height: 200px;
|
||
transition: border 1s ease-out, background 1s ease-out;
|
||
}
|
||
|
||
textarea {
|
||
height: 200px;
|
||
resize: vertical;
|
||
}
|
||
|
||
form {
|
||
.field {
|
||
margin: 5px 0;
|
||
display: flex;
|
||
background: #fff;
|
||
padding: 10px;
|
||
|
||
label, .label {
|
||
display:inline-block;
|
||
width: 250px;
|
||
text-align: right;
|
||
margin-right: 12px;
|
||
padding-top: 5px;
|
||
flex-shrink: 0;
|
||
}
|
||
label {
|
||
font-family: $headfont;
|
||
font-weight: bold;
|
||
}
|
||
.help_text {
|
||
font-style: italic;
|
||
font-size: 0.9em;
|
||
}
|
||
.input {
|
||
display:inline-block;
|
||
flex-grow:1;
|
||
margin-right:10px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// taggit autosuggest
|
||
ul.as-selections {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
|
||
li {
|
||
display:inline-block;
|
||
}
|
||
|
||
.as-selection-item {
|
||
padding: 0 5px;
|
||
background: $compl;
|
||
color: #fff;
|
||
margin: 5px;
|
||
border-radius: 2px;
|
||
font-weight: 500;
|
||
|
||
a.as-close {
|
||
color: #fff;
|
||
-webkit-cursor: pointer;
|
||
cursor: pointer;
|
||
margin-right: 5px;
|
||
}
|
||
|
||
&.selected {
|
||
background: $fond;
|
||
}
|
||
}
|
||
|
||
.as-original {
|
||
flex-grow: 1;
|
||
min-width: 200px;
|
||
|
||
input {
|
||
width: 100%;
|
||
}
|
||
}
|
||
}
|
||
|
||
div.as-results {
|
||
position: relative;
|
||
ul {
|
||
position: absolute;
|
||
width: 100%;
|
||
background: #fff;
|
||
|
||
border: 1px solid lighten($fond, 30%);
|
||
|
||
li {
|
||
padding: 3px 5px;
|
||
}
|
||
|
||
li.as-result-item {
|
||
|
||
&.active {
|
||
background: lighten($compl, 50%);
|
||
}
|
||
}
|
||
|
||
li.as-message {
|
||
font-style: italic;
|
||
}
|
||
}
|
||
}
|
||
|
||
//
|
||
|
||
.window {
|
||
display:none;
|
||
position:fixed;
|
||
width: 100%;
|
||
height: 100%;
|
||
overflow: hidden;
|
||
top: 0;
|
||
left: 0;
|
||
z-index: 10;
|
||
|
||
&.visible {
|
||
display:block;
|
||
}
|
||
|
||
.window-bg {
|
||
background: #000;
|
||
opacity: 0.7;
|
||
width: 100%;
|
||
height: 100%;
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
z-index: -1;
|
||
}
|
||
|
||
.window-content {
|
||
position: relative;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
margin-top: 50vh;
|
||
transform: translateY(-50%);
|
||
z-index: 1;
|
||
background: #eee;
|
||
max-width: 600px;
|
||
width: 90%;
|
||
max-height: 100%;
|
||
overflow: auto;
|
||
|
||
form {
|
||
label, .label {
|
||
width: 150px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.window-closer {
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
padding: 12px;
|
||
z-index: 3;
|
||
&:after {
|
||
content: "×";
|
||
}
|
||
}
|
||
}
|
||
|
||
#map_addlieu {
|
||
height: 500px;
|
||
}
|
||
|
||
.lieu-ui {
|
||
.map {
|
||
height: 400px;
|
||
width: 100%;
|
||
}
|
||
.hidden {
|
||
display: none;
|
||
}
|
||
.masked {
|
||
visibility: hidden;
|
||
}
|
||
}
|
||
|
||
#avis_lieu_vide {
|
||
display:none;
|
||
}
|
||
|
||
a.lieu-change {
|
||
color:#fff;
|
||
background: $compl;
|
||
overflow: hidden;
|
||
display: inline-block;
|
||
max-width: 250px;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
padding: 5px;
|
||
border-radius: 5px;
|
||
margin-right: 7px;
|
||
|
||
&.ajout:before {
|
||
content: "+";
|
||
margin-right: 5px;
|
||
}
|
||
}
|
||
|
||
#stages-map {
|
||
width:100%;
|
||
height: 600px;
|
||
}
|
||
|
||
#feedback-button {
|
||
position:fixed;
|
||
left:0;
|
||
top:30%;
|
||
color:#fff;
|
||
z-index:4;
|
||
background: #000;
|
||
padding: 14px;
|
||
transform: rotateZ(90deg);
|
||
transform-origin: bottom left;
|
||
}
|
||
|
||
|
||
.betacadre {
|
||
background: lighten($rouge, 20%);
|
||
padding: 10px;
|
||
}
|
||
|
||
.entrer {
|
||
background: #fff;
|
||
max-width: 500px;
|
||
padding: 15px;
|
||
text-align: center;
|
||
margin: 15px auto;
|
||
}
|
||
|
||
article.promo {
|
||
display:block;
|
||
font-size: 1.1em;
|
||
|
||
.explications {
|
||
display:table;
|
||
|
||
|
||
& > div {
|
||
display:table-cell;
|
||
vertical-align: middle;
|
||
text-align: center;
|
||
|
||
p {
|
||
margin: 15px 15px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
#id_stage-thematiques {
|
||
display: none;
|
||
}
|
||
|
||
.stage-liste {
|
||
li {
|
||
display: block;
|
||
&.date-maj {
|
||
font-weight: bold;
|
||
font-size: 0.9em;
|
||
padding: 3px 0;
|
||
}
|
||
&.stage {
|
||
padding: 10px;
|
||
background: #fff;
|
||
margin: 10px;
|
||
|
||
h3 {
|
||
font-size: 1.4em;
|
||
|
||
.auteur {
|
||
font-family: $textfont;
|
||
font-weight: bold;
|
||
font-size: 0.8em;
|
||
}
|
||
}
|
||
ul.infos {
|
||
display:inline;
|
||
}
|
||
}
|
||
}
|
||
}
|