2019-04-14 03:08:24 +02:00
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* FONTS
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
2019-04-16 20:25:49 +02:00
|
|
|
/* palanquin-regular - latin */
|
2019-04-14 03:08:24 +02:00
|
|
|
@font-face {
|
2019-04-16 20:25:49 +02:00
|
|
|
font-family: 'Palanquin';
|
2019-04-14 03:08:24 +02:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
2019-04-16 20:25:49 +02:00
|
|
|
src: local('Palanquin Regular'), local('Palanquin-Regular'),
|
|
|
|
url('../fonts/palanquin-v4-latin-regular.woff2') format('woff2'),
|
|
|
|
url('../fonts/palanquin-v4-latin-regular.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
|
|
|
/* palanquin-600 - latin */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Palanquin';
|
2019-04-14 03:08:24 +02:00
|
|
|
font-style: normal;
|
2019-04-16 20:25:49 +02:00
|
|
|
font-weight: 600;
|
|
|
|
src: local('Palanquin SemiBold'), local('Palanquin-SemiBold'),
|
|
|
|
url('../fonts/palanquin-v4-latin-600.woff2') format('woff2'),
|
|
|
|
url('../fonts/palanquin-v4-latin-600.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
/* oleo-script-regular - latin */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Oleo Script';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local('Oleo Script'), local('OleoScript-Regular'),
|
|
|
|
url('../fonts/oleo-script-v7-latin-regular.woff2') format('woff2'),
|
|
|
|
url('../fonts/oleo-script-v7-latin-regular.woff') format('woff');
|
|
|
|
}
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* GENERAL RULES
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
2019-04-16 20:25:49 +02:00
|
|
|
font-family: "Palanquin", sans-serif;
|
|
|
|
font-weight: 400;
|
2019-04-14 05:47:13 +02:00
|
|
|
color: #000000;
|
2019-04-14 03:08:24 +02:00
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2019-04-14 05:47:13 +02:00
|
|
|
background-color: #FFFFFF;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
a:hover,
|
|
|
|
a:active,
|
|
|
|
a:visited {
|
2019-04-14 05:47:13 +02:00
|
|
|
color: #FFAAAA;
|
2019-04-14 03:08:24 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
html {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* HEADER
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
#main-header {
|
2019-04-14 05:47:13 +02:00
|
|
|
height: 460px;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
background: #FFFFFF;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
#main-header-background {
|
|
|
|
height: 100%;
|
2019-04-14 03:08:24 +02:00
|
|
|
width: 100%;
|
|
|
|
|
2019-04-22 16:56:35 +02:00
|
|
|
background-image: url("../img/header/background-1080.jpg");
|
2019-04-14 05:47:13 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
z-index: 500;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
#main-header-title {
|
|
|
|
height: 80%;
|
|
|
|
width: 80%;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
position: absolute;
|
2019-04-14 05:47:13 +02:00
|
|
|
top: 30px;
|
|
|
|
left: 10%;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
z-index: 1000;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
2019-04-22 16:56:35 +02:00
|
|
|
@media only screen and (max-width: 800px) {
|
2019-04-14 03:08:24 +02:00
|
|
|
#main-header {
|
2019-04-22 16:56:35 +02:00
|
|
|
background-image: url("../img/header/background-800.jpg");
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
#main-header {
|
2019-04-22 16:56:35 +02:00
|
|
|
background-image: url("../img/header/background-480.jpg");
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* CONTENT
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
section {
|
|
|
|
max-width: 960px;
|
|
|
|
|
|
|
|
margin: 0 0 100px calc(50% - 480px);
|
|
|
|
padding: 0 60px;
|
|
|
|
|
|
|
|
text-align: justify;
|
2019-04-16 20:25:49 +02:00
|
|
|
line-height: 180%;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
section h2 {
|
|
|
|
margin: 0 0 25px 0;
|
2019-04-16 20:25:49 +02:00
|
|
|
padding: 20px 0;
|
|
|
|
|
|
|
|
border-bottom-width: 5px;
|
|
|
|
border-bottom-style: solid;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
color: #FFFFFF;
|
2019-04-16 20:25:49 +02:00
|
|
|
font-family: "Oleo script", sans-serif;
|
2019-04-14 05:47:13 +02:00
|
|
|
font-size: 4rem;
|
2019-04-16 20:25:49 +02:00
|
|
|
font-weight: 400;
|
2019-04-14 03:08:24 +02:00
|
|
|
text-align: center;
|
|
|
|
word-wrap: break-word;
|
2019-04-14 05:47:13 +02:00
|
|
|
hyphens: none;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 03:30:12 +02:00
|
|
|
section.red h2 {
|
|
|
|
color: #EA6C61;
|
|
|
|
border-bottom-color: #f7cbc0;
|
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
|
2019-04-28 03:30:12 +02:00
|
|
|
section.orange h2 {
|
2019-04-28 03:41:16 +02:00
|
|
|
color: #e6a04f;
|
2019-04-28 03:30:12 +02:00
|
|
|
border-bottom-color: #f8dfc2;
|
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
|
2019-04-28 03:30:12 +02:00
|
|
|
section.green h2 {
|
|
|
|
color: #5fb574;
|
|
|
|
border-bottom-color: #cae2cb;
|
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
|
2019-04-28 03:30:12 +02:00
|
|
|
section.blue h2 {
|
|
|
|
color: #2896ce;
|
|
|
|
border-bottom-color: #bcd4ec;
|
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
|
2019-04-28 03:30:12 +02:00
|
|
|
section.purple h2 {
|
|
|
|
color: #9e60ce;
|
|
|
|
border-bottom-color: #d8bfeb;
|
|
|
|
}
|
2019-04-22 17:00:05 +02:00
|
|
|
|
2019-04-28 03:30:12 +02:00
|
|
|
section.pink h2 {
|
|
|
|
color: #e4678c;
|
|
|
|
border-bottom-color: #f3cad2;
|
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
section p {
|
|
|
|
padding: 0 0 20px 0;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
2019-04-16 20:25:49 +02:00
|
|
|
section strong {
|
2019-04-22 17:00:34 +02:00
|
|
|
font-weight: 600;
|
2019-04-16 20:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
section p.stand-out {
|
|
|
|
font-style: italic;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 880px) {
|
|
|
|
section {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
margin: 0 auto 100px auto;
|
|
|
|
padding: 0 60px;
|
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
|
|
|
|
section h2 {
|
2019-04-16 20:25:49 +02:00
|
|
|
padding: 15px 0;
|
|
|
|
|
|
|
|
border-bottom-width: 4px;
|
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
font-size: 3rem;
|
|
|
|
}
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
section {
|
|
|
|
padding: 0 30px;
|
2019-04-16 20:25:49 +02:00
|
|
|
|
|
|
|
line-height: 150%;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
2019-04-14 05:47:13 +02:00
|
|
|
}
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
@media only screen and (max-width: 360px) {
|
2019-04-14 03:08:24 +02:00
|
|
|
section h2 {
|
2019-04-16 20:25:49 +02:00
|
|
|
padding: 5px 0;
|
|
|
|
|
2019-04-14 05:47:13 +02:00
|
|
|
font-size: 2.2rem;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* BUTTONS
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: block;
|
|
|
|
width: 80%;
|
|
|
|
|
|
|
|
margin: 20px auto 0 auto;
|
2019-04-28 04:25:48 +02:00
|
|
|
padding: 15px 0;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-28 03:31:33 +02:00
|
|
|
border-width: 2px;
|
|
|
|
border-style: solid;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
font-size: 1.4rem;
|
2019-04-16 20:25:49 +02:00
|
|
|
font-weight: 700;
|
2019-04-14 03:08:24 +02:00
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
2019-04-28 03:31:33 +02:00
|
|
|
section.red .button {
|
|
|
|
background-color: #fbe5df;
|
|
|
|
border-color: #EA6C61;
|
|
|
|
color: #EA6C61;
|
|
|
|
}
|
|
|
|
|
|
|
|
section.orange .button {
|
|
|
|
background-color: #fbefe0;
|
2019-04-28 03:41:16 +02:00
|
|
|
border-color: #d78d38;
|
|
|
|
color: #d78d38;
|
2019-04-28 03:31:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
section.red .button:hover {
|
|
|
|
background-color: #f7cbc0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section.orange .button:hover {
|
|
|
|
background-color: #f8dfc2;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.button img {
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button > * {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
.button {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
padding: 10px 15px;
|
|
|
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button img {
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* LOCATION
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
#mailing-address {
|
|
|
|
font-size: 1.5rem;
|
2019-04-28 04:22:20 +02:00
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
text-align: center;
|
2019-04-28 04:22:20 +02:00
|
|
|
line-height: 32px;
|
|
|
|
vertical-align: middle;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#mailing-address img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
|
2019-04-28 04:22:20 +02:00
|
|
|
vertical-align: middle;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#interactive-map {
|
|
|
|
width: 100%;
|
|
|
|
|
2019-04-28 04:22:20 +02:00
|
|
|
margin: 20px 0;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
border: none;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#public-transport-info {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
2019-04-28 03:05:28 +02:00
|
|
|
grid-template-rows: 1fr 1fr 1fr;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
margin: 0 0 0 -100px;
|
|
|
|
|
|
|
|
font-size: 1.5rem;
|
2019-04-16 20:25:49 +02:00
|
|
|
font-weight: 400;
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
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,
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-1-icon,
|
|
|
|
#transport-bus-1-stop {
|
2019-04-14 03:08:24 +02:00
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#transport-rer-icon,
|
|
|
|
#transport-rer-stop,
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-2-icon,
|
|
|
|
#transport-bus-2-stop {
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
#transport-noctilien-icon,
|
|
|
|
#transport-noctilien-stop {
|
2019-04-28 03:05:28 +02:00
|
|
|
grid-row: 3;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#transport-metro-icon,
|
|
|
|
#transport-rer-icon {
|
|
|
|
grid-column: 1;
|
|
|
|
justify-self: end;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#transport-metro-stop,
|
|
|
|
#transport-rer-stop {
|
|
|
|
grid-column: 2;
|
|
|
|
}
|
|
|
|
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-1-icon,
|
|
|
|
#transport-bus-2-icon,
|
2019-04-14 03:08:24 +02:00
|
|
|
#transport-noctilien-icon {
|
|
|
|
grid-column: 3;
|
|
|
|
justify-self: end;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-1-stop,
|
|
|
|
#transport-bus-2-stop,
|
2019-04-14 03:08:24 +02:00
|
|
|
#transport-noctilien-stop {
|
|
|
|
grid-column: 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 880px) {
|
|
|
|
#public-transport-info {
|
|
|
|
display: grid;
|
2019-04-28 03:05:28 +02:00
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
|
2019-04-14 03:08:24 +02:00
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
line-height: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#transport-metro-icon,
|
|
|
|
#transport-metro-stop {
|
|
|
|
grid-row: 1;
|
|
|
|
}
|
|
|
|
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-rer-icon,
|
|
|
|
#transport-rer-stop {
|
2019-04-14 03:08:24 +02:00
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-1-icon,
|
|
|
|
#transport-bus-1-stop {
|
2019-04-14 03:08:24 +02:00
|
|
|
grid-row: 3;
|
|
|
|
}
|
|
|
|
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-2-icon,
|
|
|
|
#transport-bus-2-stop {
|
|
|
|
grid-row: 4;
|
|
|
|
}
|
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
#transport-noctilien-icon,
|
|
|
|
#transport-noctilien-stop {
|
2019-04-28 03:05:28 +02:00
|
|
|
grid-row: 5;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#transport-metro-icon,
|
|
|
|
#transport-rer-icon,
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-1-icon,
|
|
|
|
#transport-bus-2-icon,
|
2019-04-14 03:08:24 +02:00
|
|
|
#transport-noctilien-icon {
|
|
|
|
grid-column: 1;
|
|
|
|
justify-self: end;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#transport-metro-stop,
|
|
|
|
#transport-rer-stop,
|
2019-04-28 03:05:28 +02:00
|
|
|
#transport-bus-1-stop,
|
|
|
|
#transport-bus-2-stop,
|
2019-04-14 03:08:24 +02:00
|
|
|
#transport-noctilien-stop {
|
|
|
|
grid-column: 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 580px) {
|
|
|
|
#public-transport-info {
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
#mailing-address {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#public-transport-info {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#public-transport-info img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 320px) {
|
|
|
|
#public-transport-info img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* SPONSORS
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
.sponsor-logo-container {
|
2019-04-14 03:08:24 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
.sponsor-logo-container img {
|
2019-04-14 03:08:24 +02:00
|
|
|
height: 100px;
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
2019-04-16 20:25:49 +02:00
|
|
|
@media only screen and (max-width: 880px) {
|
2019-04-28 04:23:16 +02:00
|
|
|
.sponsor-logo-container img {
|
2019-04-16 20:25:49 +02:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
margin: 10px auto;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
2019-04-16 20:25:49 +02:00
|
|
|
}
|
2019-04-14 03:08:24 +02:00
|
|
|
|
2019-04-16 20:25:49 +02:00
|
|
|
@media only screen and (max-width: 480px) {
|
2019-04-28 04:23:16 +02:00
|
|
|
.sponsor-logo-container img {
|
2019-04-16 20:25:49 +02:00
|
|
|
height: 80px;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* CONTACT
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
|
|
|
#contact-email {
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
text-align: center;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
#contact-email img {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
2019-04-16 20:25:49 +02:00
|
|
|
@media only screen and (max-width: 880px) {
|
|
|
|
#contact-email {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-14 03:08:24 +02:00
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
#contact-email {
|
2019-04-16 20:25:49 +02:00
|
|
|
font-size: 1rem;
|
2019-04-14 03:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#contact-email img {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-04-22 17:00:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
/* REMERCIEMENTS
|
|
|
|
/*--------------------------------------------------------*/
|
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
#acknowledgements {
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1.1rem;
|
2019-04-22 17:00:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
#acknowledgements > span {
|
|
|
|
display: block;
|
2019-04-23 06:24:36 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
#acknowledgements .name {
|
|
|
|
font-weight: 700;
|
2019-04-22 17:00:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
#acknowledgements .role {
|
|
|
|
margin: 0 0 20px 0;
|
2019-04-22 17:00:05 +02:00
|
|
|
|
2019-04-28 04:23:16 +02:00
|
|
|
color: #6B6666;
|
|
|
|
}
|