Téléverser les fichiers vers "www"
This commit is contained in:
parent
7c5b3e25b9
commit
d581b97525
4 changed files with 2196 additions and 841 deletions
337
www/calendar.css
Normal file
337
www/calendar.css
Normal file
|
@ -0,0 +1,337 @@
|
|||
/* Calendar */
|
||||
|
||||
.cal-container {
|
||||
position: relative;
|
||||
|
||||
width: 100%;
|
||||
/* height: 1200px; */
|
||||
padding: 0;
|
||||
|
||||
font-size: 0.8rem;
|
||||
line-height: 100%;
|
||||
}
|
||||
|
||||
.cal-container,
|
||||
.cal-container * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
/* Time slots */
|
||||
|
||||
.cal-container .cal-time-slot-container {
|
||||
display: grid;
|
||||
/* grid-template-columns: repeat(24, 1fr); */
|
||||
grid-template-rows: 30px auto;
|
||||
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: calc(100% + 30px);
|
||||
padding: 0;
|
||||
border-bottom: 0px solid rgba(0, 0, 0, 0.5);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot {
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.5);
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
/* .cal-container .cal-time-slot:hover {
|
||||
background-color: red;
|
||||
} */
|
||||
|
||||
.cal-container .cal-time-slot:nth-child(even) {
|
||||
background-color: rgba(71, 19, 43, 0);
|
||||
}
|
||||
|
||||
/* .cal-container .cal-time-slot:nth-child(even):hover {
|
||||
background-color: #D9D9D9;
|
||||
} */
|
||||
|
||||
.cal-container .cal-time-slot:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot-hour {
|
||||
padding: 0 0 0 calc(100% - 0.9rem + 7px);
|
||||
background-color: none; /* rgba(255, 223, 165, 0.08); */
|
||||
border-bottom: 0px solid rgba(71, 19, 43, 0.25);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot-hour:nth-child(even) {
|
||||
background-color: none;/* rgba(255, 223, 165, 0.05);*/
|
||||
}
|
||||
|
||||
.cal-container .cal-time-slot-hour:first-child {
|
||||
color: transparent;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
/* Events */
|
||||
|
||||
.cal-container .cal-event-container {
|
||||
display: grid;
|
||||
/* grid-template-columns: repeat(24, 1fr); */
|
||||
/* grid-template-rows: repeat(12, auto); */
|
||||
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
/* height: 100%; */
|
||||
padding: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.cal-container .cal-event {
|
||||
position: relative;
|
||||
height: 42px;
|
||||
margin: 2px 0;
|
||||
padding: 5px;
|
||||
/* background-color: #EFEFEF; */
|
||||
border-radius: 3px;
|
||||
/* border: 1px solid #CCC; */
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
/* z-index: 500; */
|
||||
transition: 50ms ease-in;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > * {
|
||||
display: none;
|
||||
margin: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > .cal-event-name,
|
||||
.cal-container .cal-event > .cal-event-location,
|
||||
.cal-container .cal-event > .cal-event-perm-count {
|
||||
display: block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > .cal-event-name {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.cal-container .cal-event > .cal-event-location {
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/*.cal-container .cal-event > .cal-event-location::before {
|
||||
content: " · ";
|
||||
}*/
|
||||
|
||||
.cal-container .cal-event > .cal-event-perm-count {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-event:not(.cal-event-subscribed) > .cal-event-perm-count.cal-perms-missing {
|
||||
width: calc(100% - 10px);
|
||||
right: auto;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
background-color: #FFF;
|
||||
border: 2px solid #E44;
|
||||
color: #E44;
|
||||
font-weight: bold;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cal-container .cal-event.cal-event-subscribed {
|
||||
border-width: 3px;
|
||||
border-color: #000;
|
||||
}
|
||||
|
||||
.cal-container .cal-event.cal-event-subscribed::after {
|
||||
content: "✔";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 1px;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
|
||||
/* Event details popup */
|
||||
|
||||
.cal-container .cal-event-details {
|
||||
position: absolute;
|
||||
min-height: 100px;
|
||||
/* min-width: 40%; */
|
||||
max-width: 80%;
|
||||
padding: 20px;
|
||||
background-color: #333;
|
||||
color: #FFF;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details:after {
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
border-bottom-color: #333;
|
||||
border-width: 20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details.above-event:after {
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
border-top-color: #333;
|
||||
border-width: 20px;
|
||||
margin-left: -20px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details * {
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-close-button {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
font-size: 1.2rem;
|
||||
color: #BBB;
|
||||
transition: 100ms ease-out;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-close-button:hover {
|
||||
background-color: #484848;
|
||||
color: #EFEFEF;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details a,
|
||||
.cal-container .cal-event-details a:hover {
|
||||
color: #FFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-name {
|
||||
padding: 10px;
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
color: #FFF;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-name h3 {
|
||||
margin: 0 20px 20px 20px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details table {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details td.cal-detail-label {
|
||||
padding: 0 10px 10px 0;
|
||||
font-weight: bold;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details td.cal-detail-value {
|
||||
padding: 0 0 10px 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area {
|
||||
margin: 10px 0;
|
||||
padding: 10px;
|
||||
background-color: #DFDFDF;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-title {
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count {
|
||||
margin: 0 10px 0 0;
|
||||
font-size: 1.7rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count.cal-perms-missing {
|
||||
color: #E44;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count.cal-perms-full {
|
||||
color: #393;
|
||||
}
|
||||
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-subscription-switch {
|
||||
margin: 0 0 0 10px;
|
||||
padding: 10px;
|
||||
font-size: 1.35rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-nb-missing-perms {
|
||||
margin: 20px 0 0 0;
|
||||
padding: 5px;
|
||||
background-color: #FFF;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
font-size: 1.1rem;
|
||||
color: #E44;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-description {
|
||||
margin: 20px 0 0 0;
|
||||
color: #DDD;
|
||||
font-size: 0.9rem;
|
||||
font-style: italic;
|
||||
text-align: justify;
|
||||
line-height: 130%;
|
||||
}
|
||||
|
||||
.cal-container .cal-event-details .cal-detail-tag {
|
||||
display: inline-block;
|
||||
margin: 5px;
|
||||
padding: 5px;
|
||||
border: 1px solid #DDD;
|
||||
}
|
||||
|
||||
|
||||
|
628
www/index.html
628
www/index.html
File diff suppressed because it is too large
Load diff
349
www/normalize.css
vendored
Normal file
349
www/normalize.css
vendored
Normal file
|
@ -0,0 +1,349 @@
|
|||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
/* Document
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct the line height in all browsers.
|
||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the margin in all browsers.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the `main` element consistently in IE.
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the font size and margin on `h1` elements within `section` and
|
||||
* `article` contexts in Chrome, Firefox, and Safari.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in Firefox.
|
||||
* 2. Show the overflow in Edge and IE.
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background on active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove the bottom border in Chrome 57-
|
||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
||||
* 2. Correct the odd `em` font sizing in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
||||
* all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Change the font styles in all browsers.
|
||||
* 2. Remove the margin in Firefox and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the overflow in IE.
|
||||
* 1. Show the overflow in Edge.
|
||||
*/
|
||||
|
||||
button,
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
||||
* 1. Remove the inheritance of text transform in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the inability to style clickable types in iOS and Safari.
|
||||
*/
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner border and padding in Firefox.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Restore the focus styles unset by the previous rule.
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the padding in Firefox.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the text wrapping in Edge and IE.
|
||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
||||
* 3. Remove the padding so developers are not caught out when they zero out
|
||||
* `fieldset` elements in all browsers.
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the default vertical scrollbar in IE 10+.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Add the correct box sizing in IE 10.
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the odd appearance in Chrome and Safari.
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
||||
* 2. Change font properties to `inherit` in Safari.
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Add the correct display in all browsers.
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10+.
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the correct display in IE 10.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
767
www/style.css
Normal file
767
www/style.css
Normal file
|
@ -0,0 +1,767 @@
|
|||
/*--------------------------------------------------------*/
|
||||
/* FONTS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
/* fira-sans-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local("Fira Sans Regular"), local("FiraSans-Regular"),
|
||||
url("../fonts/fira-sans-v10-latin-regular.woff2") format("woff2"),
|
||||
url("../fonts/fira-sans-v10-latin-regular.woff") format("woff");
|
||||
}
|
||||
|
||||
/* fira-sans-700 - latin */
|
||||
@font-face {
|
||||
font-family: "Fira Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local("Fira Sans Bold"), local("FiraSans-Bold"),
|
||||
url("../fonts/fira-sans-v10-latin-700.woff2") format("woff2"),
|
||||
url("../fonts/fira-sans-v10-latin-700.woff") format("woff");
|
||||
}
|
||||
|
||||
/* fira-mono-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Fira Mono';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Fira Mono Regular'), local('FiraMono-Regular'),
|
||||
url('../fonts/fira-mono-v8-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url('../fonts/fira-mono-v8-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
|
||||
/* permanent-marker-regular - latin */
|
||||
@font-face {
|
||||
font-family: "Permanent Marker";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local("Permanent Marker Regular"), local("PermanentMarker-Regular"),
|
||||
url("../fonts/permanent-marker-v9-latin-regular.woff2") format("woff2"),
|
||||
url("../fonts/permanent-marker-v9-latin-regular.woff") format("woff");
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* GENERAL RULES
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: "Fira Sans", sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 180%;
|
||||
color: #000000;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #fbfbfb;
|
||||
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover,
|
||||
a:active,
|
||||
a:visited {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
html, body {
|
||||
font-size: 16px;
|
||||
line-height: 160%;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* HEADER
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#main-header {
|
||||
position: relative;
|
||||
height: 750px;
|
||||
margin-bottom: 40px;
|
||||
background-color: #fbfbfb;
|
||||
background-image: url("../img/header/text_header.svg"), url("../img/header/fond.svg") ;
|
||||
background-position: top center, top center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 1200px) {
|
||||
#main-header {
|
||||
height: 600px;
|
||||
/* margin-bottom: 30px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1100px) {
|
||||
#main-header {
|
||||
height: 440px;
|
||||
/* margin-bottom: 30px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#main-header {
|
||||
height: 400px;
|
||||
/* margin-bottom: 20px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 640px) {
|
||||
#main-header {
|
||||
height: 300px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#main-header {
|
||||
height: 220px;
|
||||
/* margin-bottom: 20px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
#main-header {
|
||||
height: 120px;
|
||||
/* margin-bottom: 15px; */
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 220px) {
|
||||
#main-header {
|
||||
height: 100px;
|
||||
/* margin-bottom: 15px; */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* CONTENT
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
section {
|
||||
padding: 0 0 200px 0;
|
||||
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom center;
|
||||
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
section > * {
|
||||
max-width: 960px;
|
||||
|
||||
margin-left: calc(50% - 480px);
|
||||
padding-left: 60px;
|
||||
padding-right: 60px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
margin-bottom: 25px;
|
||||
padding: 40px 60px 30px 60px;
|
||||
|
||||
color: #000000;
|
||||
font-family: "Permanent Marker";
|
||||
font-size: 3.2rem;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
hyphens: auto;
|
||||
}
|
||||
|
||||
section:nth-child(2) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-yellow.svg) , url(../img/theme/elements/chenille.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, 0% 0%;
|
||||
|
||||
}
|
||||
section:nth-child(3) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-orange.svg), url(../img/theme/elements/cocon.svg) /*url(../img/theme/elements/bouche.svg)*/;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, top right;
|
||||
}
|
||||
|
||||
section:nth-child(4) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-magenta.svg), url(../img/theme/elements/cocon_sortie.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, center left;
|
||||
}
|
||||
|
||||
|
||||
section:nth-child(5) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/paint/paint-violet.svg), url(../img/theme/elements/early_papillon.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0% 100%, center right;
|
||||
}
|
||||
|
||||
section:nth-child(6) {
|
||||
background-color: #fbfbfb;
|
||||
background-image: url(../img/theme/elements/papillon.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: top left;
|
||||
}
|
||||
|
||||
section p {
|
||||
padding-bottom: 20px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
section p.stand-out {
|
||||
/* font-weight: 700; */
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section p a,
|
||||
section p a:visited {
|
||||
padding: 0px 2px;
|
||||
color: #000000;
|
||||
/* text-decoration: underline; */
|
||||
border-bottom: 3px solid #000;
|
||||
}
|
||||
|
||||
section p a:hover,
|
||||
section p a:active {
|
||||
background-color: #000000;
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
section > * {
|
||||
max-width: 960px;
|
||||
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-left: 40px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
font-size: 2.6rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
section h2 {
|
||||
padding: 40px 40px 30px 40px;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
|
||||
section {
|
||||
background-image: none
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 380px) {
|
||||
section > * {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
padding: 40px 20px 30px 20px;
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
section h2 {
|
||||
padding: 30px 20px 20px 20px;
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* BUTTONS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
.button {
|
||||
display: block;
|
||||
/* width: 80%; */
|
||||
|
||||
margin: 20px auto 0 auto;
|
||||
padding: 15px 20px;
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
border: 3px solid #000000;
|
||||
|
||||
color: #000000;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 400;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #000000;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
#instagram-button > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/instagram.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#instagram-button:hover > span::before {
|
||||
background-image: url("../img/icons/instagram-white.svg");
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.button > span {
|
||||
line-height: 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
.button {
|
||||
width: 100%;
|
||||
padding: 10px 15px;
|
||||
|
||||
font-size: 1.1rem;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.button img {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* INTERQ 2016
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
.interq2016 img {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
.interq2016 img {
|
||||
width: 60%;
|
||||
height: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* PRICE TABLE
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#calendar {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#calendar {
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
#cal-container {
|
||||
min-width: 1800px;
|
||||
margin: 0 0 40px 0; /* Fix the weird y-overflow of the calendar root */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* LOCATION
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#mailing-address {
|
||||
margin: 0 0 20px 0;
|
||||
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
line-height: 32px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#mailing-address > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/location.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#interactive-map {
|
||||
width: 100%;
|
||||
|
||||
margin: 20px 0;
|
||||
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
#public-transport-info {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
grid-template-rows: 1fr 1fr 1fr;
|
||||
|
||||
margin-left: calc(50% - 480px - 50px);
|
||||
|
||||
font-size: 1.5rem;
|
||||
|
||||
line-height: 48px;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#public-transport-info > * {
|
||||
margin: 5px;
|
||||
|
||||
justify-self: left;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
|
||||
margin: 0 5px 0 0;
|
||||
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-metro-stop,
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-1-stop {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#transport-rer-icon,
|
||||
#transport-rer-stop,
|
||||
#transport-bus-2-icon,
|
||||
#transport-bus-2-stop {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
#transport-noctilien-icon,
|
||||
#transport-noctilien-stop {
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-rer-icon {
|
||||
grid-column: 1;
|
||||
justify-self: end;
|
||||
|
||||
}
|
||||
|
||||
#transport-metro-stop,
|
||||
#transport-rer-stop {
|
||||
grid-column: 2;
|
||||
}
|
||||
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-2-icon,
|
||||
#transport-noctilien-icon {
|
||||
grid-column: 3;
|
||||
justify-self: end;
|
||||
|
||||
}
|
||||
|
||||
#transport-bus-1-stop,
|
||||
#transport-bus-2-stop,
|
||||
#transport-noctilien-stop {
|
||||
grid-column: 4;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
#public-transport-info {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-rows: auto auto auto auto auto;
|
||||
align-items: center;
|
||||
|
||||
margin: 0;
|
||||
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-metro-stop {
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#transport-rer-icon,
|
||||
#transport-rer-stop {
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-1-stop {
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
#transport-bus-2-icon,
|
||||
#transport-bus-2-stop {
|
||||
grid-row: 4;
|
||||
}
|
||||
|
||||
#transport-noctilien-icon,
|
||||
#transport-noctilien-stop {
|
||||
grid-row: 5;
|
||||
}
|
||||
|
||||
#transport-metro-icon,
|
||||
#transport-rer-icon,
|
||||
#transport-bus-1-icon,
|
||||
#transport-bus-2-icon,
|
||||
#transport-noctilien-icon {
|
||||
grid-column: 1;
|
||||
justify-self: end;
|
||||
|
||||
}
|
||||
|
||||
#transport-metro-stop,
|
||||
#transport-rer-stop,
|
||||
#transport-bus-1-stop,
|
||||
#transport-bus-2-stop,
|
||||
#transport-noctilien-stop {
|
||||
grid-column: 2;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 580px) {
|
||||
#mailing-address {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
#public-transport-info {
|
||||
grid-template-columns: 4fr 6fr;
|
||||
|
||||
line-height: 32px;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 380px) {
|
||||
#public-transport-info {
|
||||
row-gap: 16px;
|
||||
}
|
||||
|
||||
#public-transport-info img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* SPONSORS
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#sponsors {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#sponsors img {
|
||||
height: 100px;
|
||||
object-fit: cover;
|
||||
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc {
|
||||
height: 155px;
|
||||
border-radius: 78px;
|
||||
transition: 100ms ease-in;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc:hover {
|
||||
border: 5px solid #884578ff
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#sponsors img {
|
||||
height: 60px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#sponsors img.sponsor-disc {
|
||||
height: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* CONTACT
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#contact-email {
|
||||
font-family: "Fira Mono";
|
||||
font-size: 1.5rem;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#contact-email > span::before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
background-image: url("../img/icons/email.svg");
|
||||
background-size: 32px 32px;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
#contact-email {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
#contact-email > span::before {
|
||||
content: "";
|
||||
height: 0;
|
||||
width: 0;
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* EQUIPE INTERQ
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#team h3 {
|
||||
margin: 0 0 10px 0;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.team-group {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.team-group figure {
|
||||
margin: 0 20px;
|
||||
}
|
||||
|
||||
.team-group figure img {
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
.team-group figcaption {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
@media only screen and (max-width: 880px) {
|
||||
.team-group {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.team-group figure {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 320px) {
|
||||
|
||||
.team-group figure img {
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------*/
|
||||
/* SIGNATURE
|
||||
/*--------------------------------------------------------*/
|
||||
|
||||
#signature {
|
||||
text-align: right;
|
||||
|
||||
}
|
||||
|
||||
/* Tableau */
|
||||
td, th {
|
||||
border: 1px solid #333;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
table {
|
||||
|
||||
border-collapse: collapse;
|
||||
margin: auto;
|
||||
}
|
Loading…
Reference in a new issue