diff --git a/sites/all/modules/features/materio_administration/materio_administration.info b/sites/all/modules/features/materio_administration/materio_administration.info index 9d647453..ff7b471a 100644 --- a/sites/all/modules/features/materio_administration/materio_administration.info +++ b/sites/all/modules/features/materio_administration/materio_administration.info @@ -8,6 +8,10 @@ dependencies[] = admin_menu_toolbar dependencies[] = ctools dependencies[] = elysia_cron dependencies[] = features +dependencies[] = login_destination +dependencies[] = logintoboggan +dependencies[] = logintoboggan_rules +dependencies[] = logintoboggan_variable dependencies[] = materio_user dependencies[] = menu dependencies[] = role_delegation @@ -87,6 +91,19 @@ features[variable][] = content_type_extras_title_hide_breve features[variable][] = content_type_extras_title_hide_company features[variable][] = content_type_extras_title_hide_didactique features[variable][] = content_type_extras_title_hide_materiau +features[variable][] = login_destination_immediate_redirect +features[variable][] = login_destination_preserve_destination +features[variable][] = logintoboggan_confirm_email_at_registration +features[variable][] = logintoboggan_immediate_login_on_register +features[variable][] = logintoboggan_login_successful_message +features[variable][] = logintoboggan_login_with_email +features[variable][] = logintoboggan_minimum_password_length +features[variable][] = logintoboggan_override_destination_parameter +features[variable][] = logintoboggan_pre_auth_role +features[variable][] = logintoboggan_purge_unvalidated_user_interval +features[variable][] = logintoboggan_redirect_on_confirm +features[variable][] = logintoboggan_redirect_on_register +features[variable][] = logintoboggan_unified_login features[variable][] = title_node features[variable][] = title_taxonomy_term features[variable][] = workflow_access_priority diff --git a/sites/all/modules/features/materio_administration/materio_administration.strongarm.inc b/sites/all/modules/features/materio_administration/materio_administration.strongarm.inc index e5a8c33e..0989321a 100644 --- a/sites/all/modules/features/materio_administration/materio_administration.strongarm.inc +++ b/sites/all/modules/features/materio_administration/materio_administration.strongarm.inc @@ -120,6 +120,97 @@ function materio_administration_strongarm() { $strongarm->value = 0; $export['content_type_extras_title_hide_materiau'] = $strongarm; + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_confirm_email_at_registration'; + $strongarm->value = '0'; + $export['logintoboggan_confirm_email_at_registration'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_immediate_login_on_register'; + $strongarm->value = 1; + $export['logintoboggan_immediate_login_on_register'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_login_successful_message'; + $strongarm->value = '0'; + $export['logintoboggan_login_successful_message'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_login_with_email'; + $strongarm->value = '1'; + $export['logintoboggan_login_with_email'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_minimum_password_length'; + $strongarm->value = '0'; + $export['logintoboggan_minimum_password_length'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_override_destination_parameter'; + $strongarm->value = 0; + $export['logintoboggan_override_destination_parameter'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_pre_auth_role'; + $strongarm->value = '9'; + $export['logintoboggan_pre_auth_role'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_purge_unvalidated_user_interval'; + $strongarm->value = '604800'; + $export['logintoboggan_purge_unvalidated_user_interval'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_redirect_on_confirm'; + $strongarm->value = 'user/%uid/edit'; + $export['logintoboggan_redirect_on_confirm'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_redirect_on_register'; + $strongarm->value = ''; + $export['logintoboggan_redirect_on_register'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'logintoboggan_unified_login'; + $strongarm->value = 0; + $export['logintoboggan_unified_login'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'login_destination_immediate_redirect'; + $strongarm->value = 1; + $export['login_destination_immediate_redirect'] = $strongarm; + + $strongarm = new stdClass(); + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ + $strongarm->api_version = 1; + $strongarm->name = 'login_destination_preserve_destination'; + $strongarm->value = 1; + $export['login_destination_preserve_destination'] = $strongarm; + $strongarm = new stdClass(); $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ $strongarm->api_version = 1; diff --git a/sites/all/themes/gui/materiobasetheme/css/styles.css b/sites/all/themes/gui/materiobasetheme/css/styles.css index ba4e2aca..7935ef27 100644 --- a/sites/all/themes/gui/materiobasetheme/css/styles.css +++ b/sites/all/themes/gui/materiobasetheme/css/styles.css @@ -9353,61 +9353,62 @@ body.node-type-simplenews #content article.node.node-simplenews tbody { */ @media only screen and (min-width: 40.063em) { - /* line 2109, ../scss/styles.scss */ - body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto { + /* line 2110, ../scss/styles.scss */ + body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-demi:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-full:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-auto, body.page-node-11187 .node-11187 .field-name-body div.column-auto:last-child { display: moz-inline-stack; display: inline-block; vertical-align: top; zoom: 1; *display: inline; margin: 10px; + float: none; } - /* line 2112, ../scss/styles.scss */ + /* line 2114, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column { width: 22.4%; } - /* line 2114, ../scss/styles.scss */ - body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text { + /* line 2116, ../scss/styles.scss */ + body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text, body.page-node-11187 .node-11187 .field-name-body div.column p.description { min-height: 170px; } - /* line 2116, ../scss/styles.scss */ + /* line 2119, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi { width: 46%; } - /* line 2118, ../scss/styles.scss */ + /* line 2121, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text { min-height: 110px; } - /* line 2120, ../scss/styles.scss */ + /* line 2123, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-full { width: 92%; } - /* line 2124, ../scss/styles.scss */ + /* line 2127, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-auto { width: auto; max-width: 98%; } - /* line 2131, ../scss/styles.scss */ + /* line 2133, ../scss/styles.scss */ body.page-node-11187 #block-materio-user-user-register { width: 600px; margin: 0 auto; } } @media only screen and (max-width: 40em) { - /* line 2138, ../scss/styles.scss */ + /* line 2140, ../scss/styles.scss */ body.page-node-11187 #block-system-help { text-align: center; } } -/* line 2142, ../scss/styles.scss */ +/* line 2144, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body { text-align: center; } -/* line 2144, ../scss/styles.scss */ +/* line 2146, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body > * { text-align: left; } -/* line 2145, ../scss/styles.scss */ +/* line 2147, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto { position: relative; border-radius: 5px; @@ -9415,51 +9416,52 @@ body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-111 box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); overflow: hidden; } -/* line 2148, ../scss/styles.scss */ +/* line 2150, ../scss/styles.scss */ .ie8 body.page-node-11187 .node-11187 .field-name-body div.column, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-demi, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-full, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-auto { max-width: 500px; margin: auto; margin-bottom: 15px; border: 1px solid #C6C6C6; } -/* line 2151, ../scss/styles.scss */ +/* line 2153, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column > *, body.page-node-11187 .node-11187 .field-name-body div.column-demi > *, body.page-node-11187 .node-11187 .field-name-body div.column-full > *, body.page-node-11187 .node-11187 .field-name-body div.column-auto > * { padding: 0 10px; } -/* line 2152, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column img, body.page-node-11187 .node-11187 .field-name-body div.column-demi img, body.page-node-11187 .node-11187 .field-name-body div.column-full img, body.page-node-11187 .node-11187 .field-name-body div.column-auto img { - float: left; - padding: 0; -} -/* line 2153, ../scss/styles.scss */ +/* line 2155, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column h2, body.page-node-11187 .node-11187 .field-name-body div.column-demi h2, body.page-node-11187 .node-11187 .field-name-body div.column-full h2, body.page-node-11187 .node-11187 .field-name-body div.column-auto h2 { text-align: left; - margin: 5px 0 0; + margin: 5px 0 0 15px; } -/* line 2154, ../scss/styles.scss */ +/* line 2156, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-full .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-auto .subtitle { - padding: 0 0 0 1em; + padding: 0 0 0 15px; font-size: 18px; font-style: italic; font-weight: bold; line-height: 1; } -/* line 2158, ../scss/styles.scss */ +/* line 2161, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column ul, body.page-node-11187 .node-11187 .field-name-body div.column-demi ul, body.page-node-11187 .node-11187 .field-name-body div.column-full ul, body.page-node-11187 .node-11187 .field-name-body div.column-auto ul { margin: 0; padding: 0 15px; } -/* line 2159, ../scss/styles.scss */ +/* line 2162, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column li, body.page-node-11187 .node-11187 .field-name-body div.column-demi li, body.page-node-11187 .node-11187 .field-name-body div.column-full li, body.page-node-11187 .node-11187 .field-name-body div.column-auto li { list-style: none; font-size: 12px; } -/* line 2161, ../scss/styles.scss */ +/* line 2164, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column li:before, body.page-node-11187 .node-11187 .field-name-body div.column-demi li:before, body.page-node-11187 .node-11187 .field-name-body div.column-full li:before, body.page-node-11187 .node-11187 .field-name-body div.column-auto li:before { content: "+ "; font-weight: 900; } -/* line 2166, ../scss/styles.scss */ +/* line 2169, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column .description, body.page-node-11187 .node-11187 .field-name-body div.column-demi .description, body.page-node-11187 .node-11187 .field-name-body div.column-full .description, body.page-node-11187 .node-11187 .field-name-body div.column-auto .description { + font-size: 12px; + margin: 0; + padding: 0 15px; +} +/* line 2173, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link { margin: 0; border-radius: 0 0 5px 5px 0 0 0; @@ -9467,7 +9469,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.pag border: 1px solid #fff; min-height: 92px; } -/* line 2168, ../scss/styles.scss */ +/* line 2175, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link a { display: block; width: 100%; @@ -9475,36 +9477,37 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link a, body.p color: #1A1A1A; text-decoration: none; } -/* line 2170, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.gratos .get-link { - background-color: #4BA13D; +/* line 2177, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link { + background-color: #C8C8C8; } -/* line 2171, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.flocon .get-link { +/* line 2178, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.web .get-link { background-color: #69CDCF; } -/* line 2172, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.etoile .get-link { +/* line 2179, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.webshowroom .get-link { background-color: #D476AE; } -/* line 2173, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.cinqetoiles .get-link { +/* line 2180, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.pack4 .get-link { background-color: #E6DE1C; } -/* line 2174, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column.ecole-de-neige, body.page-node-11187 .node-11187 .field-name-body div.column-demi.ecole-de-neige, body.page-node-11187 .node-11187 .field-name-body div.column-full.ecole-de-neige, body.page-node-11187 .node-11187 .field-name-body div.column-auto.ecole-de-neige { - float: none; +/* line 2181, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.etudiants .get-link { + background-color: #4BA13D; } -/* line 2180, ../scss/styles.scss */ +/* line 2183, ../scss/styles.scss */ +body.page-node-11187 .node-11187 .field-name-body div.column.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.neutral .get-link { + min-height: 62px; + padding: 15px 0; +} +/* line 2191, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column h2 { padding: 10px 0 0; font-size: 24px; } -/* line 2181, ../scss/styles.scss */ -body.page-node-11187 .node-11187 .field-name-body div.column .subtitle { - min-height: 3em; -} -/* line 2182, ../scss/styles.scss */ +/* line 2193, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link { padding: 0; font-size: 24px; @@ -9516,7 +9519,7 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link { -webkit-transition: text-shadow 0.3s ease-out; transition: text-shadow 0.3s ease-out; } -/* line 2186, ../scss/styles.scss */ +/* line 2197, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column .get-link span { font-size: 20px; } @@ -9530,44 +9533,28 @@ body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2191, ../scss/styles.scss */ +/* line 2202, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 { padding: 10px 0 0; font-size: 24px; top: 0; } -/* line 2192, ../scss/styles.scss */ +/* line 2203, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle { min-height: 2em; } -/* line 2193, ../scss/styles.scss */ +/* line 2204, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi ul { font-size: 14px; min-height: 120px; } -/* line 2194, ../scss/styles.scss */ +/* line 2205, ../scss/styles.scss */ body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link { font-size: 14px; text-align: left; padding: 0 1em; background-color: #ddd; } -/* line 2203, ../scss/styles.scss */ -body.page-node-11187.logged-in .column.gratos .get-link { - cursor: auto !important; -} -/* line 2205, ../scss/styles.scss */ -body.page-node-11187.logged-in .column.gratos .get-link a { - display: none !important; -} -/* line 2208, ../scss/styles.scss */ -body.page-node-11187.logged-in.role-6 .column.flocon .get-link { - cursor: auto !important; -} -/* line 2210, ../scss/styles.scss */ -body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { - display: none !important; -} /* _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ @@ -9576,31 +9563,31 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_| */ -/* line 2224, ../scss/styles.scss */ +/* line 2235, ../scss/styles.scss */ .node-11186 nav ul.links a.language-link { display: none; } -/* line 2227, ../scss/styles.scss */ +/* line 2238, ../scss/styles.scss */ #webform-client-form-11186 { background-color: #e6e6e6; border-radius: 10px; background-clip: padding-box; } @media only screen and (min-width: 40.063em) { - /* line 2227, ../scss/styles.scss */ + /* line 2238, ../scss/styles.scss */ #webform-client-form-11186 { padding: 10px 30px; } - /* line 2230, ../scss/styles.scss */ + /* line 2241, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options { margin: 10px 0; } - /* line 2232, ../scss/styles.scss */ + /* line 2243, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options label { width: auto; } - /* line 2234, ../scss/styles.scss */ + /* line 2245, ../scss/styles.scss */ #webform-client-form-11186 fieldset { border-radius: 5px; background-clip: padding-box; @@ -9608,22 +9595,22 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { border-bottom: 1px solid #cccccc; padding: 10px; } - /* line 2236, ../scss/styles.scss */ + /* line 2247, ../scss/styles.scss */ #webform-client-form-11186 fieldset fieldset { border: 0 solid #ddd; padding: 0; } - /* line 2238, ../scss/styles.scss */ + /* line 2249, ../scss/styles.scss */ #webform-client-form-11186 legend { margin: 0; font-size: 18px; font-weight: 700; } - /* line 2239, ../scss/styles.scss */ + /* line 2250, ../scss/styles.scss */ #webform-client-form-11186 .form-item { margin: 0 20px 0 0; } - /* line 2240, ../scss/styles.scss */ + /* line 2251, ../scss/styles.scss */ #webform-client-form-11186 label { font-size: 12px; width: 10em; @@ -9636,7 +9623,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { margin-right: 1em; border-bottom: 1px solid #cccccc; } - /* line 2241, ../scss/styles.scss */ + /* line 2252, ../scss/styles.scss */ #webform-client-form-11186 .description { font-size: 10px; width: 25em; @@ -9649,40 +9636,40 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { margin-left: 1em; color: #7f7f7f; } - /* line 2242, ../scss/styles.scss */ + /* line 2253, ../scss/styles.scss */ #webform-client-form-11186 input.form-text { width: 13em; } } @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 2227, ../scss/styles.scss */ + /* line 2238, ../scss/styles.scss */ #webform-client-form-11186 { padding: 10px; } - /* line 2247, ../scss/styles.scss */ + /* line 2258, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options { margin: 0 0 10px 0; } - /* line 2249, ../scss/styles.scss */ + /* line 2260, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-item { width: 100%; } - /* line 2250, ../scss/styles.scss */ + /* line 2261, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options label { width: 75%; } - /* line 2252, ../scss/styles.scss */ + /* line 2263, ../scss/styles.scss */ #webform-client-form-11186 legend { margin: 0; font-size: 16px; font-weight: 700; } - /* line 2253, ../scss/styles.scss */ + /* line 2264, ../scss/styles.scss */ #webform-client-form-11186 .form-item { margin: 0; float: none; } - /* line 2254, ../scss/styles.scss */ + /* line 2265, ../scss/styles.scss */ #webform-client-form-11186 label { font-size: 12px; width: 30%; @@ -9694,16 +9681,16 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { vertical-align: middle; margin-right: 0.5em; } - /* line 2255, ../scss/styles.scss */ + /* line 2266, ../scss/styles.scss */ #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select { width: 60%; } - /* line 2256, ../scss/styles.scss */ + /* line 2267, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-infos { font-size: 14px; } } -/* line 2261, ../scss/styles.scss */ +/* line 2272, ../scss/styles.scss */ #webform-client-form-11186 .fieldset-wrapper > .form-item { display: moz-inline-stack; display: inline-block; @@ -9711,7 +9698,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { zoom: 1; *display: inline; } -/* line 2263, ../scss/styles.scss */ +/* line 2274, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left { display: moz-inline-stack; display: inline-block; @@ -9721,7 +9708,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { width: 25%; border: none; } -/* line 2264, ../scss/styles.scss */ +/* line 2275, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right { display: moz-inline-stack; display: inline-block; @@ -9730,7 +9717,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { *display: inline; min-width: 70%; } -/* line 2268, ../scss/styles.scss */ +/* line 2279, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio { border: 1px solid #ddd; border-radius: 5px; @@ -9739,7 +9726,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { margin: 5px 0; background-color: #fff; } -/* line 2270, ../scss/styles.scss */ +/* line 2281, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input { display: moz-inline-stack; display: inline-block; @@ -9749,7 +9736,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { vertical-align: middle; margin: 0px 5px; } -/* line 2271, ../scss/styles.scss */ +/* line 2282, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label { font-size: 20px; font-weight: 700; @@ -9761,41 +9748,41 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { vertical-align: middle; margin: 0; } -/* line 2273, ../scss/styles.scss */ +/* line 2284, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); } -/* line 2274, ../scss/styles.scss */ +/* line 2285, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) { background-color: #69CDCF; } -/* line 2275, ../scss/styles.scss */ +/* line 2286, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) { background-color: #D476AE; } -/* line 2276, ../scss/styles.scss */ +/* line 2287, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) { background-color: #E6DE1C; } -/* line 2278, ../scss/styles.scss */ +/* line 2289, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) { opacity: 0.4; } -/* line 2281, ../scss/styles.scss */ +/* line 2292, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options > label { width: 200px; font-size: 18px; font-weight: 700; } -/* line 2282, ../scss/styles.scss */ +/* line 2293, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-left--membership-options label { border: 0; } -/* line 2285, ../scss/styles.scss */ +/* line 2296, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--me--my-account-email { display: block; } -/* line 2290, ../scss/styles.scss */ +/* line 2301, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description { display: moz-inline-stack; display: inline-block; @@ -9803,11 +9790,11 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { zoom: 1; *display: inline; } -/* line 2293, ../scss/styles.scss */ +/* line 2304, ../scss/styles.scss */ #webform-client-form-11186 #addressfield-wrapper { margin-top: 1em; } -/* line 2294, ../scss/styles.scss */ +/* line 2305, ../scss/styles.scss */ #webform-client-form-11186 .street-block .form-item { display: moz-inline-stack; display: inline-block; @@ -9815,12 +9802,12 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { zoom: 1; *display: inline; } -/* line 2296, ../scss/styles.scss */ +/* line 2307, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators { margin: 20px 0; overflow: hidden; } -/* line 2298, ../scss/styles.scss */ +/* line 2309, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators fieldset { display: moz-inline-stack; display: inline-block; @@ -9829,23 +9816,23 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { *display: inline; width: 33%; } -/* line 2299, ../scss/styles.scss */ +/* line 2310, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators .form-item { display: block; } -/* line 2300, ../scss/styles.scss */ +/* line 2311, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators label { width: 6em; } -/* line 2301, ../scss/styles.scss */ +/* line 2312, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--collaborators input { width: 11em; } -/* line 2304, ../scss/styles.scss */ +/* line 2315, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-infos { margin: 20px 0; } -/* line 2306, ../scss/styles.scss */ +/* line 2317, ../scss/styles.scss */ #webform-client-form-11186 .form-actions { padding: 0; margin: 0; @@ -9853,7 +9840,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { background-color: transparent; text-align: left; } -/* line 2311, ../scss/styles.scss */ +/* line 2322, ../scss/styles.scss */ #webform-client-form-11186 .form-actions .form-submit { border: 2px solid #69CDCF; background-color: #69CDCF; @@ -9879,7 +9866,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 2321, ../scss/styles.scss */ +/* line 2332, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters > label { margin: 0; font-size: 18px; @@ -9887,7 +9874,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { border: none; line-height: 40px; } -/* line 2322, ../scss/styles.scss */ +/* line 2333, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters .form-item { display: moz-inline-stack; display: inline-block; @@ -9895,23 +9882,23 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { zoom: 1; *display: inline; } -/* line 2324, ../scss/styles.scss */ +/* line 2335, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label { width: auto; } -/* line 2325, ../scss/styles.scss */ +/* line 2336, ../scss/styles.scss */ #webform-client-form-11186 #webform-component-column-right--news-letters .form-item input, #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label { margin: 0; } -/* line 2329, ../scss/styles.scss */ +/* line 2340, ../scss/styles.scss */ #webform-client-form-11186 #edit-submitted-terms-of-services { margin-bottom: 0.5em; } -/* line 2331, ../scss/styles.scss */ +/* line 2342, ../scss/styles.scss */ #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label { margin: 0 0.3em 0 0; } -/* line 2332, ../scss/styles.scss */ +/* line 2343, ../scss/styles.scss */ #webform-client-form-11186 #edit-submitted-terms-of-services label { width: auto; } @@ -9923,41 +9910,41 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_| */ -/* line 2343, ../scss/styles.scss */ +/* line 2354, ../scss/styles.scss */ #uc-cart-view-form { background-color: #e6e6e6; padding: 10px, 30px; display: inline-block; } -/* line 2349, ../scss/styles.scss */ +/* line 2360, ../scss/styles.scss */ #uc-cart-view-form table { width: auto; display: table; background-color: #fff; } -/* line 2353, ../scss/styles.scss */ +/* line 2364, ../scss/styles.scss */ #uc-cart-view-form table thead th { border-bottom: none; padding: 1em; } -/* line 2354, ../scss/styles.scss */ +/* line 2365, ../scss/styles.scss */ #uc-cart-view-form table tbody { border-top: none; } -/* line 2356, ../scss/styles.scss */ +/* line 2367, ../scss/styles.scss */ #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd { background-color: #fff; border-bottom: none; } -/* line 2360, ../scss/styles.scss */ +/* line 2371, ../scss/styles.scss */ #uc-cart-view-form table tbody td { padding: 1em; } -/* line 2367, ../scss/styles.scss */ +/* line 2378, ../scss/styles.scss */ #uc-cart-view-form .form-type-uc-quantity input { width: 2em; } -/* line 2371, ../scss/styles.scss */ +/* line 2382, ../scss/styles.scss */ #uc-cart-view-form .form-actions { padding: 0; margin: 0; @@ -9967,11 +9954,11 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { display: block; width: 100%; } -/* line 2378, ../scss/styles.scss */ +/* line 2389, ../scss/styles.scss */ #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after { display: block; } -/* line 2381, ../scss/styles.scss */ +/* line 2392, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit { font-size: 16px; font-weight: bold; @@ -9999,7 +9986,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2384, ../scss/styles.scss */ +/* line 2395, ../scss/styles.scss */ #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 { font-size: 16px; font-weight: bold; @@ -10051,18 +10038,18 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_| */ -/* line 2398, ../scss/styles.scss */ +/* line 2409, ../scss/styles.scss */ #uc-cart-checkout-form { display: inline-block; background-color: #e6e6e6; padding: 10px, 30px; } -/* line 2411, ../scss/styles.scss */ +/* line 2422, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-row { padding-bottom: 20px; margin-bottom: 20px; } -/* line 2417, ../scss/styles.scss */ +/* line 2428, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-column { display: moz-inline-stack; display: inline-block; @@ -10072,17 +10059,17 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { max-width: 39%; margin: 15px 1em; } -/* line 2420, ../scss/styles.scss */ +/* line 2431, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper { margin: 10px 0; } -/* line 2427, ../scss/styles.scss */ +/* line 2438, ../scss/styles.scss */ #uc-cart-checkout-form fieldset.form-column-right { border-left: 1px solid #ccc; margin-left: 2em; padding-left: 2em; } -/* line 2433, ../scss/styles.scss */ +/* line 2444, ../scss/styles.scss */ #uc-cart-checkout-form legend { margin: 0; font-size: 18px; @@ -10090,19 +10077,19 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { border: none; line-height: 2; } -/* line 2434, ../scss/styles.scss */ +/* line 2445, ../scss/styles.scss */ #uc-cart-checkout-form .fieldset-description { font-size: 12px; } -/* line 2435, ../scss/styles.scss */ +/* line 2446, ../scss/styles.scss */ #uc-cart-checkout-form .fieldset-wrapper { font-size: 12px; } -/* line 2436, ../scss/styles.scss */ +/* line 2447, ../scss/styles.scss */ #uc-cart-checkout-form .form-item { margin: 0 20px 0 0; } -/* line 2438, ../scss/styles.scss */ +/* line 2449, ../scss/styles.scss */ #uc-cart-checkout-form .description { font-size: 10px; width: 25em; @@ -10115,7 +10102,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { margin-left: 1em; color: #7f7f7f; } -/* line 2441, ../scss/styles.scss */ +/* line 2452, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane > .fieldset-wrapper { display: moz-inline-stack; display: inline-block; @@ -10127,57 +10114,57 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { padding: 10px; background-color: #fff; } -/* line 2448, ../scss/styles.scss */ +/* line 2459, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane table { font-size: 14px; min-width: 20em; } -/* line 2404, ../scss/styles.scss */ +/* line 2415, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane table td.price { width: 4em; } -/* line 2452, ../scss/styles.scss */ +/* line 2463, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane tbody { border: none; } -/* line 2453, ../scss/styles.scss */ +/* line 2464, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane tr { background-color: transparent; border: none; } -/* line 2454, ../scss/styles.scss */ +/* line 2465, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td { padding: 0 5px; vertical-align: bottom; } -/* line 2457, ../scss/styles.scss */ +/* line 2468, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products { width: auto; } -/* line 2458, ../scss/styles.scss */ +/* line 2469, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products a { color: inherit; font-weight: 700; } -/* line 2460, ../scss/styles.scss */ +/* line 2471, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products ul.product-description { margin: 0; font-size: 12px; } -/* line 2461, ../scss/styles.scss */ +/* line 2472, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane td.products li { list-style: none; } -/* line 2465, ../scss/styles.scss */ +/* line 2476, ../scss/styles.scss */ #uc-cart-checkout-form #cart-pane tr.subtotal td { font-size: 16px; font-weight: 700; } -/* line 2469, ../scss/styles.scss */ +/* line 2480, ../scss/styles.scss */ #uc-cart-checkout-form #customer-pane { width: 35em; } -/* line 2472, ../scss/styles.scss */ +/* line 2483, ../scss/styles.scss */ #uc-cart-checkout-form #billing-pane label { font-size: 12px; width: 8em; @@ -10190,22 +10177,22 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { margin-right: 1em; border-bottom: 1px solid #cccccc; } -/* line 2473, ../scss/styles.scss */ +/* line 2484, ../scss/styles.scss */ #uc-cart-checkout-form #billing-pane input.form-text { width: 13em; } -/* line 2480, ../scss/styles.scss */ +/* line 2491, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane { float: right; } -/* line 2483, ../scss/styles.scss */ +/* line 2494, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane .fieldset-wrapper { background-color: #fff; border-radius: 5px; background-clip: padding-box; padding: 10px; } -/* line 2489, ../scss/styles.scss */ +/* line 2500, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div { float: none; border: none; @@ -10216,57 +10203,57 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { *display: inline; margin: 10px 0 20px; } -/* line 2492, ../scss/styles.scss */ +/* line 2503, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div table { font-size: 14px; min-width: 20em; } -/* line 2404, ../scss/styles.scss */ +/* line 2415, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div table td.price { width: 4em; } -/* line 2493, ../scss/styles.scss */ +/* line 2504, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div tbody { border: none; } -/* line 2494, ../scss/styles.scss */ +/* line 2505, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div td { padding: 0 5px; } -/* line 2498, ../scss/styles.scss */ +/* line 2509, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div tr td { font-weight: 500; } -/* line 2500, ../scss/styles.scss */ +/* line 2511, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td { font-size: 16px; font-weight: 700; text-align: right; } -/* line 2507, ../scss/styles.scss */ +/* line 2518, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label { width: auto; border-bottom: none; } -/* line 2508, ../scss/styles.scss */ +/* line 2519, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method { border: 1px solid #ddd; border-radius: 5px; margin: 0.5em; padding: 0.5em; } -/* line 2512, ../scss/styles.scss */ +/* line 2523, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label { font-weight: bold; } -/* line 2516, ../scss/styles.scss */ +/* line 2527, ../scss/styles.scss */ #uc-cart-checkout-form #payment-pane #payment-details { width: 25em; border-top: none; padding: 0; margin: 0; } -/* line 2522, ../scss/styles.scss */ +/* line 2533, ../scss/styles.scss */ #uc-cart-checkout-form .form-actions { padding: 0; margin: 0; @@ -10274,7 +10261,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { background-color: transparent; text-align: right; } -/* line 2527, ../scss/styles.scss */ +/* line 2538, ../scss/styles.scss */ #uc-cart-checkout-form .form-actions .form-submit { font-size: 16px; font-weight: bold; @@ -10302,7 +10289,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2530, ../scss/styles.scss */ +/* line 2541, ../scss/styles.scss */ #uc-cart-checkout-form .form-actions .form-submit#edit-continue { font-size: 16px; font-weight: bold; @@ -10362,65 +10349,65 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___| */ -/* line 2557, ../scss/styles.scss */ +/* line 2568, ../scss/styles.scss */ .page-cart-checkout-review #content > .inner-content { display: inline-block; padding: 1em; } -/* line 2565, ../scss/styles.scss */ +/* line 2576, ../scss/styles.scss */ .page-cart-checkout-review #edit-actions { margin: 0; padding: 0; } -/* line 2567, ../scss/styles.scss */ +/* line 2578, ../scss/styles.scss */ .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after { display: block; } -/* line 2571, ../scss/styles.scss */ +/* line 2582, ../scss/styles.scss */ .page-cart-checkout-review #review-instructions { width: 30em; padding: 1em 0; } -/* line 2577, ../scss/styles.scss */ +/* line 2588, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table { border: none; } -/* line 2579, ../scss/styles.scss */ +/* line 2590, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .pane-title-row { border: none; background-color: transparent; text-align: left; font-size: 18px; } -/* line 2584, ../scss/styles.scss */ +/* line 2595, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .pane-title-row td { padding: 1em 0 0 0; } -/* line 2587, ../scss/styles.scss */ +/* line 2598, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table table.cart-review tr.odd { background-color: transparent; border: none; } -/* line 2592, ../scss/styles.scss */ +/* line 2603, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table td.title-col { padding: 0; text-align: left; } -/* line 2596, ../scss/styles.scss */ +/* line 2607, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table td.data-col { padding: 0; width: 75%; } -/* line 2600, ../scss/styles.scss */ +/* line 2611, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .review-button-row { border: none; background-color: transparent; } -/* line 2604, ../scss/styles.scss */ +/* line 2615, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .review-button-row > td { padding: 3em 0 0 0; } -/* line 2608, ../scss/styles.scss */ +/* line 2619, ../scss/styles.scss */ .page-cart-checkout-review table.order-review-table .review-button-row form { margin: 0 0.5em 0 0; display: moz-inline-stack; @@ -10429,13 +10416,13 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { zoom: 1; *display: inline; } -/* line 2615, ../scss/styles.scss */ +/* line 2626, ../scss/styles.scss */ .page-cart-checkout-review #edit-actions { border: 0px; background-color: transparent; text-align: right; } -/* line 2620, ../scss/styles.scss */ +/* line 2631, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit { font-size: 16px; font-weight: bold; @@ -10463,7 +10450,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); } -/* line 2623, ../scss/styles.scss */ +/* line 2634, ../scss/styles.scss */ .page-cart-checkout-review input.form-submit#edit-submit { font-size: 16px; font-weight: bold; @@ -10515,7 +10502,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____| |__| */ -/* line 2639, ../scss/styles.scss */ +/* line 2650, ../scss/styles.scss */ #didactique-page .node-didactique { border-radius: 5px; background-clip: padding-box; @@ -10527,23 +10514,23 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { margin: 1em auto; padding: 1em; } -/* line 2646, ../scss/styles.scss */ +/* line 2657, ../scss/styles.scss */ #didactique-page .node-didactique .field-name-field-emvideo { margin: 1em 0; } -/* line 2650, ../scss/styles.scss */ +/* line 2661, ../scss/styles.scss */ #didactique-page .node-didactique .field-name-title-field { font-size: 24px; font-weight: 900; font-style: italic; padding: 5px 0; } -/* line 2654, ../scss/styles.scss */ +/* line 2665, ../scss/styles.scss */ #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img { max-width: 100%; } @media only screen and (min-width: 40.063em) { - /* line 2659, ../scss/styles.scss */ + /* line 2670, ../scss/styles.scss */ #didactique-page .side { display: moz-inline-stack; display: inline-block; @@ -10552,11 +10539,11 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { *display: inline; vertical-align: top; } - /* line 2660, ../scss/styles.scss */ + /* line 2671, ../scss/styles.scss */ #didactique-page .group-sideleft { width: 60%; } - /* line 2661, ../scss/styles.scss */ + /* line 2672, ../scss/styles.scss */ #didactique-page .group-sideright { width: 39%; } @@ -10570,7 +10557,7 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { */ @media only screen and (max-width: 40em) { - /* line 2679, ../scss/styles.scss */ + /* line 2690, ../scss/styles.scss */ .page-whoweare #tool-bar #block-materio-page-title-materio-page-title { display: none; } @@ -10584,23 +10571,23 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___| */ -/* line 2693, ../scss/styles.scss */ +/* line 2704, ../scss/styles.scss */ .maintenance-page #container, .maintenance-page #header { text-align: center; padding: 0; position: relative; } -/* line 2694, ../scss/styles.scss */ +/* line 2705, ../scss/styles.scss */ .maintenance-page #main { background-color: transparent; } -/* line 2695, ../scss/styles.scss */ +/* line 2706, ../scss/styles.scss */ .maintenance-page #header h1.site-name { font-size: 36px; margin: 0; padding-left: 0; } -/* line 2696, ../scss/styles.scss */ +/* line 2707, ../scss/styles.scss */ .maintenance-page h2.site-slogan { font-size: 16px; font-weight: 300; @@ -10615,69 +10602,69 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { |__| |__|__|__ _| |__| */ -/* line 2706, ../scss/styles.scss */ +/* line 2717, ../scss/styles.scss */ .page-faq-page #main { background: #fff url("../img/bg-faq.png") no-repeat bottom right; } -/* line 2712, ../scss/styles.scss */ +/* line 2723, ../scss/styles.scss */ #content .faq-content .faq-description { font-size: 12px; padding-bottom: 2em; } -/* line 2716, ../scss/styles.scss */ +/* line 2727, ../scss/styles.scss */ #content .faq-content ul.faq-ul-questions-top { margin: 0; } -/* line 2718, ../scss/styles.scss */ +/* line 2729, ../scss/styles.scss */ #content .faq-content ul.faq-ul-questions-top li { list-style: none; } -/* line 2720, ../scss/styles.scss */ +/* line 2731, ../scss/styles.scss */ #content .faq-content ul.faq-ul-questions-top li a { font-size: 18px; font-weight: 500; } -/* line 2726, ../scss/styles.scss */ +/* line 2737, ../scss/styles.scss */ #content .faq-content h3.faq-header { font-size: 20px; font-weight: 700; line-height: 1.2; margin: 0; } -/* line 2729, ../scss/styles.scss */ +/* line 2740, ../scss/styles.scss */ #content .faq-content h3.faq-header a { color: #000; } -/* line 2732, ../scss/styles.scss */ +/* line 2743, ../scss/styles.scss */ #content .faq-content .faq-dl-hide-answer { padding: 0; } -/* line 2735, ../scss/styles.scss */ +/* line 2746, ../scss/styles.scss */ #content .faq-content .faq-category-group { padding-bottom: 1em; } -/* line 2738, ../scss/styles.scss */ +/* line 2749, ../scss/styles.scss */ #content .faq-content .faq-question-answer { padding: 0.3em 0 0 0.8em; } -/* line 2740, ../scss/styles.scss */ +/* line 2751, ../scss/styles.scss */ #content .faq-content .faq-question-answer .faq-question { font-size: 16px; padding: 0; font-weight: 500; } -/* line 2742, ../scss/styles.scss */ +/* line 2753, ../scss/styles.scss */ #content .faq-content .faq-question-answer .faq-question a { color: #000; } -/* line 2744, ../scss/styles.scss */ +/* line 2755, ../scss/styles.scss */ #content .faq-content .faq-question-answer .faq-answer { padding: 0; margin-bottom: 2em; font-size: 12px; } -/* line 2750, ../scss/styles.scss */ +/* line 2761, ../scss/styles.scss */ #content .faq-content .field-name-body img { max-width: 50%; height: auto; @@ -10690,30 +10677,30 @@ body.page-node-11187.logged-in.role-6 .column.flocon .get-link a { / __ / /_/ / / / / / / __/ | |/ // __/ /_/ /_/\____/_/ /_/ /_/\___/ |___//____/ */ -/* line 2764, ../scss/styles.scss */ +/* line 2775, ../scss/styles.scss */ body.home-v2 { background-color: #f7f4ed; } -/* line 2767, ../scss/styles.scss */ +/* line 2778, ../scss/styles.scss */ body.home-v2 #center { background-color: transparent; padding: 0; } -/* line 2781, ../scss/styles.scss */ +/* line 2792, ../scss/styles.scss */ #home-v2 h2 { font-size: 2.1em; font-weight: 300; } -/* line 2782, ../scss/styles.scss */ +/* line 2793, ../scss/styles.scss */ #home-v2 a { color: #000; } -/* line 2785, ../scss/styles.scss */ +/* line 2796, ../scss/styles.scss */ #home-v2 .field-name-field-liens { margin-top: 1em; } -/* line 2787, ../scss/styles.scss */ +/* line 2798, ../scss/styles.scss */ #home-v2 .field-name-field-liens .field-item { display: moz-inline-stack; display: inline-block; @@ -10722,7 +10709,7 @@ body.home-v2 #center { *display: inline; margin: 0 0.5em 0.5em 0; } -/* line 2788, ../scss/styles.scss */ +/* line 2799, ../scss/styles.scss */ #home-v2 .field-name-field-liens a { font-weight: 700; display: moz-inline-stack; @@ -10735,35 +10722,35 @@ body.home-v2 #center { background-clip: padding-box; background-color: rgba(255, 255, 255, 0.8); } -/* line 2796, ../scss/styles.scss */ +/* line 2807, ../scss/styles.scss */ #home-v2 .panel-separator { clear: both; } -/* line 2797, ../scss/styles.scss */ +/* line 2808, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane { overflow: hidden; } -/* line 2800, ../scss/styles.scss */ +/* line 2811, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-node { border-radius: 5px; background-clip: padding-box; overflow: hidden; } -/* line 2803, ../scss/styles.scss */ +/* line 2814, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node { position: relative; width: 100%; height: 100%; overflow: hidden; } -/* line 2807, ../scss/styles.scss */ +/* line 2818, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a { background-color: rgba(255, 255, 255, 0.7); border-radius: 5px; background-clip: padding-box; padding: 15px; } -/* line 2813, ../scss/styles.scss */ +/* line 2824, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video { height: auto; background-color: #f7f4ed; @@ -10771,54 +10758,54 @@ body.home-v2 #center { margin-bottom: 2em; padding-top: 0; } -/* line 2818, ../scss/styles.scss */ +/* line 2829, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { margin: 0 auto; } @media only screen and (max-width: 40em) { - /* line 2818, ../scss/styles.scss */ + /* line 2829, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 320px; height: 180px; } } @media only screen and (min-width: 40.063em) and (max-width: 64em) { - /* line 2818, ../scss/styles.scss */ + /* line 2829, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 640px; height: 360px; } } @media only screen and (min-width: 64.063em) and (max-width: 90em) { - /* line 2818, ../scss/styles.scss */ + /* line 2829, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 800px; height: 450px; } } @media only screen and (min-width: 90.063em) { - /* line 2818, ../scss/styles.scss */ + /* line 2829, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video { width: 1024px; height: 576px; } } -/* line 2832, ../scss/styles.scss */ +/* line 2843, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video .player, #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video iframe { width: 100%; height: 100%; } -/* line 2838, ../scss/styles.scss */ +/* line 2849, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field { display: none; } -/* line 2842, ../scss/styles.scss */ +/* line 2853, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body { display: none; margin-top: 1em; text-align: center; } -/* line 2846, ../scss/styles.scss */ +/* line 2857, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p { text-align: left; display: moz-inline-stack; @@ -10831,21 +10818,21 @@ body.home-v2 #center { font-size: 0.756em; } @media only screen and (max-width: 40em) { - /* line 2846, ../scss/styles.scss */ + /* line 2857, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p { width: 48%; } } -/* line 2859, ../scss/styles.scss */ +/* line 2870, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 { margin: 2em 0; } -/* line 2861, ../scss/styles.scss */ +/* line 2872, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 ul.menu { margin: 0px; text-align: center; } -/* line 2864, ../scss/styles.scss */ +/* line 2875, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li { margin: 0 1em 0 0; padding: 0px; @@ -10857,7 +10844,7 @@ body.home-v2 #center { zoom: 1; *display: inline; } -/* line 2867, ../scss/styles.scss */ +/* line 2878, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a { background-color: #4d4d4d; border-radius: 5px; @@ -10869,54 +10856,54 @@ body.home-v2 #center { -webkit-transition: opacity,background-color 0.2s ease-out; transition: opacity,background-color 0.2s ease-out; } -/* line 2879, ../scss/styles.scss */ +/* line 2890, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(1):hover a { background-color: #ff7400; color: #4d4d4d; } -/* line 2883, ../scss/styles.scss */ +/* line 2894, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(2):hover a { background-color: #79e644; color: #4d4d4d; } -/* line 2887, ../scss/styles.scss */ +/* line 2898, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(3):hover a { background-color: #69cdcf; color: #4d4d4d; } -/* line 2891, ../scss/styles.scss */ +/* line 2902, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(4):hover a { background-color: #e6de1c; color: #4d4d4d; } -/* line 2895, ../scss/styles.scss */ +/* line 2906, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(5):hover a { background-color: #d476ae; color: #4d4d4d; } -/* line 2899, ../scss/styles.scss */ +/* line 2910, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(6):hover a { background-color: #772e88; color: #4d4d4d; } -/* line 2903, ../scss/styles.scss */ +/* line 2914, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li:nth-child(7):hover a { background-color: #e62326; color: #4d4d4d; } @media only screen and (max-width: 40em) { - /* line 2859, ../scss/styles.scss */ + /* line 2870, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 { display: none; } } -/* line 2912, ../scss/styles.scss */ +/* line 2923, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register { padding: 2em 0; background: transparent url("../img/register-block.png") no-repeat 100% 90%; text-align: center; } -/* line 2916, ../scss/styles.scss */ +/* line 2927, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content { display: moz-inline-stack; display: inline-block; @@ -10925,7 +10912,7 @@ body.home-v2 #center { *display: inline; text-align: left; } -/* line 2920, ../scss/styles.scss */ +/* line 2931, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 { font-weight: 900; font-style: italic; @@ -10939,15 +10926,15 @@ body.home-v2 #center { *display: inline; vertical-align: middle; } -/* line 2921, ../scss/styles.scss */ +/* line 2932, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 { font-size: 24px; } -/* line 2921, ../scss/styles.scss */ +/* line 2932, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 { font-size: 16px; } -/* line 2923, ../scss/styles.scss */ +/* line 2934, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form { margin: 0 1em; padding: 0px; @@ -10958,7 +10945,7 @@ body.home-v2 #center { *display: inline; vertical-align: middle; } -/* line 2925, ../scss/styles.scss */ +/* line 2936, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-wrapper { margin: 0; position: relative; @@ -10969,30 +10956,30 @@ body.home-v2 #center { *display: inline; vertical-align: middle; } -/* line 2929, ../scss/styles.scss */ +/* line 2940, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account { margin-right: 5px; } -/* line 2931, ../scss/styles.scss */ +/* line 2942, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text { font-size: 12px; border-radius: 5px; background-clip: padding-box; margin-bottom: 4px; } -/* line 2931, ../scss/styles.scss */ +/* line 2942, ../scss/styles.scss */ .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text { margin-right: 5px; } -/* line 2932, ../scss/styles.scss */ +/* line 2943, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-mail input.form-text, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-name input.form-text { width: 11em; } -/* line 2933, ../scss/styles.scss */ +/* line 2944, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text { width: 7em; } -/* line 2935, ../scss/styles.scss */ +/* line 2946, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check { position: absolute; bottom: 100%; @@ -11009,16 +10996,16 @@ body.home-v2 #center { -webkit-transition: bottom 0.1s ease-out; transition: bottom 0.1s ease-out; } -/* line 2943, ../scss/styles.scss */ +/* line 2954, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error { background-color: #f3968d; color: #fff; } -/* line 2949, ../scss/styles.scss */ +/* line 2960, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok { display: none; } -/* line 2952, ../scss/styles.scss */ +/* line 2963, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit { font-size: 16px; padding: 0.1em 0.6em 0.2em; @@ -11027,13 +11014,13 @@ body.home-v2 #center { font-weight: bold; margin-bottom: 4px; } -/* line 2959, ../scss/styles.scss */ +/* line 2970, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter { margin-bottom: 0; display: block; line-height: 1; } -/* line 2961, ../scss/styles.scss */ +/* line 2972, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices > *, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter > * { display: moz-inline-stack; display: inline-block; @@ -11043,14 +11030,14 @@ body.home-v2 #center { vertical-align: middle; margin: 0; } -/* line 2962, ../scss/styles.scss */ +/* line 2973, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices label, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter label { font-size: 10px; background-color: #fff; border-radius: 3px; background-clip: padding-box; } -/* line 2966, ../scss/styles.scss */ +/* line 2977, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit { border: 2px solid #69CDCF; background-color: #69CDCF; @@ -11070,12 +11057,12 @@ body.home-v2 #center { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 2969, ../scss/styles.scss */ +/* line 2980, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] { background-color: #ddd; border: 2px solid #ddd; } -/* line 2976, ../scss/styles.scss */ +/* line 2987, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit { border: 2px solid #E6DE1C; background-color: #E6DE1C; @@ -11095,11 +11082,11 @@ body.home-v2 #center { transition: text-shadow 0s ease-out; text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } -/* line 2982, ../scss/styles.scss */ +/* line 2993, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews { display: none; } -/* line 2984, ../scss/styles.scss */ +/* line 2995, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join { display: moz-inline-stack; display: inline-block; @@ -11134,23 +11121,23 @@ body.home-v2 #center { text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } @media only screen and (max-width: 40em) { - /* line 2912, ../scss/styles.scss */ + /* line 2923, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register { background-position: 160% 50%; min-height: 60px; padding: 15px 0; } - /* line 2998, ../scss/styles.scss */ + /* line 3009, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-mail input.form-text, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-name input.form-text { width: 7em; } } -/* line 3003, ../scss/styles.scss */ +/* line 3014, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error { color: #b94a48; font-size: 12px; } -/* line 3007, ../scss/styles.scss */ +/* line 3018, ../scss/styles.scss */ .modal-content #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register { padding: 0.5em 0.5em 5em 0.5em; width: 400px; @@ -11159,15 +11146,15 @@ body.home-v2 #center { border-radius: 5px; background-clip: padding-box; } -/* line 3017, ../scss/styles.scss */ +/* line 3028, ../scss/styles.scss */ .modal-content #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form div.homepage-textfield { display: none; } -/* line 3019, ../scss/styles.scss */ +/* line 3030, ../scss/styles.scss */ .modal-content #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .description { font-size: 12px; } -/* line 3027, ../scss/styles.scss */ +/* line 3038, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); -webkit-transition: box-shadow 0.3s ease-out; @@ -11177,87 +11164,87 @@ body.home-v2 #center { background-color: #fff; position: relative; } -/* line 2776, ../scss/styles.scss */ +/* line 2787, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3035, ../scss/styles.scss */ +/* line 3046, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content { width: 100%; height: 100%; position: relative; } -/* line 3037, ../scss/styles.scss */ +/* line 3048, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node { position: absolute; height: 100%; width: 100%; } -/* line 3038, ../scss/styles.scss */ +/* line 3049, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau { position: absolute; width: 100%; height: 100%; overflow: hidden; } -/* line 3040, ../scss/styles.scss */ +/* line 3051, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img { width: 100%; margin-top: -10%; } -/* line 3042, ../scss/styles.scss */ +/* line 3053, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper { position: relative; z-index: 2; width: 30%; margin: 3em 2em; } -/* line 3048, ../scss/styles.scss */ +/* line 3059, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content { background-color: rgba(255, 255, 255, 0.8); padding: 1em; border-radius: 5px; background-clip: padding-box; } -/* line 3052, ../scss/styles.scss */ +/* line 3063, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3055, ../scss/styles.scss */ +/* line 3066, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body { margin-top: 0.5em; } @media only screen and (max-width: 40em) { - /* line 3027, ../scss/styles.scss */ + /* line 3038, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom { height: 210px; margin-top: 10px; } - /* line 3065, ../scss/styles.scss */ + /* line 3076, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau { position: absolute; width: 100%; height: 100%; overflow: hidden; } - /* line 3067, ../scss/styles.scss */ + /* line 3078, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img { margin-top: 0; } - /* line 3069, ../scss/styles.scss */ + /* line 3080, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper { width: auto; padding: 2%; margin: 2%; } - /* line 3073, ../scss/styles.scss */ + /* line 3084, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body { font-size: 0.756em; margin-top: 0.5em; } } -/* line 3082, ../scss/styles.scss */ +/* line 3093, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.showroom:after { content: url("../img/bulle.png"); -webkit-transform: scale(0.8); @@ -11268,7 +11255,7 @@ body.home-v2 #center { right: -20px; z-index: 10; } -/* line 3091, ../scss/styles.scss */ +/* line 3102, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); -webkit-transition: box-shadow 0.3s ease-out; @@ -11278,15 +11265,15 @@ body.home-v2 #center { background-color: #FFF; position: relative; } -/* line 2776, ../scss/styles.scss */ +/* line 2787, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3097, ../scss/styles.scss */ +/* line 3108, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .links a { background-color: #e6e6e6; } -/* line 3099, ../scss/styles.scss */ +/* line 3110, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau { display: moz-inline-stack; display: inline-block; @@ -11297,11 +11284,11 @@ body.home-v2 #center { height: 100%; overflow: hidden; } -/* line 3101, ../scss/styles.scss */ +/* line 3112, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img { max-width: 2000px; } -/* line 3104, ../scss/styles.scss */ +/* line 3115, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper { display: moz-inline-stack; display: inline-block; @@ -11314,20 +11301,20 @@ body.home-v2 #center { border-radius: 5px; background-clip: padding-box; } -/* line 3109, ../scss/styles.scss */ +/* line 3120, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3112, ../scss/styles.scss */ +/* line 3123, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body { margin-top: 1em; } -/* line 3116, ../scss/styles.scss */ +/* line 3127, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a { background-color: rgba(230, 230, 230, 0.8); } -/* line 3123, ../scss/styles.scss */ +/* line 3134, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.bdd:after { content: url("../img/boule.png"); -webkit-transform: scale(0.8); @@ -11337,7 +11324,7 @@ body.home-v2 #center { bottom: -50px; left: -50px; } -/* line 3132, ../scss/styles.scss */ +/* line 3143, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); -webkit-transition: box-shadow 0.3s ease-out; @@ -11348,20 +11335,20 @@ body.home-v2 #center { background-color: #000; color: #FFF; } -/* line 2776, ../scss/styles.scss */ +/* line 2787, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3139, ../scss/styles.scss */ +/* line 3150, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations a { color: #FFF; } -/* line 3141, ../scss/styles.scss */ +/* line 3152, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .node { padding: 0 0 0 30%; width: 70%; } -/* line 3144, ../scss/styles.scss */ +/* line 3155, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .node:before { content: " "; background: transparent url("../img/formations.png") no-repeat center center; @@ -11373,21 +11360,21 @@ body.home-v2 #center { width: 30%; height: 100%; } -/* line 3157, ../scss/styles.scss */ +/* line 3168, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper { padding: 1em; position: relative; } -/* line 3159, ../scss/styles.scss */ +/* line 3170, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3162, ../scss/styles.scss */ +/* line 3173, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body { margin-top: 1em; } -/* line 3167, ../scss/styles.scss */ +/* line 3178, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); -webkit-transition: box-shadow 0.3s ease-out; @@ -11396,16 +11383,16 @@ body.home-v2 #center { height: 300px; margin-top: 30px; } -/* line 2776, ../scss/styles.scss */ +/* line 2787, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3173, ../scss/styles.scss */ +/* line 3184, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .node { padding: 0 30% 0 0; width: 70%; } -/* line 3176, ../scss/styles.scss */ +/* line 3187, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .node:before { content: " "; background: transparent url("../img/services.png") no-repeat center center; @@ -11417,21 +11404,21 @@ body.home-v2 #center { width: 30%; height: 100%; } -/* line 3189, ../scss/styles.scss */ +/* line 3200, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper { padding: 1em; position: relative; } -/* line 3191, ../scss/styles.scss */ +/* line 3202, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field { font-size: 2.1em; font-weight: 300; } -/* line 3194, ../scss/styles.scss */ +/* line 3205, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body { margin-top: 1em; } -/* line 3200, ../scss/styles.scss */ +/* line 3211, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication { box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); -webkit-transition: box-shadow 0.3s ease-out; @@ -11443,15 +11430,15 @@ body.home-v2 #center { border-radius: 10px; background-clip: padding-box; } -/* line 2776, ../scss/styles.scss */ +/* line 2787, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication:hover { box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); } -/* line 3207, ../scss/styles.scss */ +/* line 3218, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication, #home-v2 > .panel-panel > div > .panel-pane.publication a, #home-v2 > .panel-panel > div > .panel-pane.publication h1, #home-v2 > .panel-panel > div > .panel-pane.publication h2 { color: #fff; } -/* line 3211, ../scss/styles.scss */ +/* line 3222, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row { display: moz-inline-stack; display: inline-block; @@ -11460,11 +11447,11 @@ body.home-v2 #center { *display: inline; width: 30%; } -/* line 3214, ../scss/styles.scss */ +/* line 3225, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 { display: none; } -/* line 3220, ../scss/styles.scss */ +/* line 3231, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 { background-color: #e6e6e6; border-radius: 10px; @@ -11474,11 +11461,11 @@ body.home-v2 #center { padding-bottom: 1em; position: relative; } -/* line 3227, ../scss/styles.scss */ +/* line 3238, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 { font-size: 30px; } -/* line 3229, ../scss/styles.scss */ +/* line 3240, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper { width: 100%; margin-left: auto; @@ -11496,7 +11483,7 @@ body.home-v2 #center { #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after { clear: both; } -/* line 3231, ../scss/styles.scss */ +/* line 3242, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel { overflow: hidden; padding-left: 0.9375rem; @@ -11506,24 +11493,24 @@ body.home-v2 #center { padding: 0em; margin-left: 1em; } -/* line 3236, ../scss/styles.scss */ +/* line 3247, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first { width: auto; } -/* line 3237, ../scss/styles.scss */ +/* line 3248, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) { width: 31%; } -/* line 3238, ../scss/styles.scss */ +/* line 3249, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside { margin: 0; } -/* line 3239, ../scss/styles.scss */ +/* line 3250, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel article.node, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel article.node-breve.vm-cardbig { margin: 0; height: 610px; } -/* line 3242, ../scss/styles.scss */ +/* line 3253, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom { width: 100%; margin-left: auto; @@ -11543,22 +11530,22 @@ body.home-v2 #center { #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after { clear: both; } -/* line 3244, ../scss/styles.scss */ +/* line 3255, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside { padding-left: 0.9375rem; padding-right: 0.9375rem; width: 100%; float: left; } -/* line 3248, ../scss/styles.scss */ +/* line 3259, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p { display: none; } -/* line 3249, ../scss/styles.scss */ +/* line 3260, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes { margin: 0 0 0.5em 0; } -/* line 3251, ../scss/styles.scss */ +/* line 3262, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item { display: moz-inline-stack; display: inline-block; @@ -11567,11 +11554,11 @@ body.home-v2 #center { *display: inline; margin-right: 1em; } -/* line 3253, ../scss/styles.scss */ +/* line 3264, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item label, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item input { vertical-align: middle; } -/* line 3257, ../scss/styles.scss */ +/* line 3268, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail { display: moz-inline-stack; display: inline-block; @@ -11580,7 +11567,7 @@ body.home-v2 #center { *display: inline; margin: 0; } -/* line 3259, ../scss/styles.scss */ +/* line 3270, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail label, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail input { display: moz-inline-stack; display: inline-block; @@ -11589,7 +11576,7 @@ body.home-v2 #center { *display: inline; margin-right: 1em; } -/* line 3262, ../scss/styles.scss */ +/* line 3273, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom #edit-subscribe, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom #edit-unsubscribe { display: moz-inline-stack; display: inline-block; @@ -11597,7 +11584,7 @@ body.home-v2 #center { zoom: 1; *display: inline; } -/* line 3270, ../scss/styles.scss */ +/* line 3281, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews { border-radius: 5px; background-clip: padding-box; @@ -11609,7 +11596,7 @@ body.home-v2 #center { position: relative; margin: 7px; } -/* line 3277, ../scss/styles.scss */ +/* line 3288, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a { position: absolute; bottom: 0; @@ -11617,13 +11604,13 @@ body.home-v2 #center { background-color: #FFF; text-align: center; } -/* line 3282, ../scss/styles.scss */ +/* line 3293, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 { padding: 10px; margin: 0; font-size: 1em; } -/* line 3291, ../scss/styles.scss */ +/* line 3302, ../scss/styles.scss */ #home-v2 > .panel-panel > div > .pane-news-home-v2:after { content: url("../img/point.png"); position: absolute; diff --git a/sites/all/themes/gui/materiobasetheme/js/script.js b/sites/all/themes/gui/materiobasetheme/js/script.js index ff4da83a..cb714161 100644 --- a/sites/all/themes/gui/materiobasetheme/js/script.js +++ b/sites/all/themes/gui/materiobasetheme/js/script.js @@ -1496,14 +1496,14 @@ function initMembershipForm() { switch(window.location.hash){ - case '#flocon': + case '#1': $('#edit-submitted-column-left-membership-options-1').attr('checked', 'checked'); // $options.trigger('change'); break; - case '#etoile': + case '#2': $('#edit-submitted-column-left-membership-options-2').attr('checked', 'checked'); break; - case '#4etoiles': + case '#3': $('#edit-submitted-column-left-membership-options-3').attr('checked', 'checked'); break; // default: diff --git a/sites/all/themes/gui/materiobasetheme/scss/styles.scss b/sites/all/themes/gui/materiobasetheme/scss/styles.scss index c4a7f039..81c0c16f 100644 --- a/sites/all/themes/gui/materiobasetheme/scss/styles.scss +++ b/sites/all/themes/gui/materiobasetheme/scss/styles.scss @@ -2107,11 +2107,14 @@ body.page-node-11187{ .node-11187{ .field-name-body{ div.column, div.column-demi, div.column-full, div.column-auto{ - @include inlineblock; margin: 10px; + &, &:last-child{ + @include inlineblock; margin: 10px; float:none; + } } div.column{ width:22.4%; - ul.list-text{ min-height:170px;} + ul.list-text, p.description{ min-height:170px;} + } div.column-demi{ width:46%; @@ -2122,8 +2125,7 @@ body.page-node-11187{ // ul.list-text{ min-height:110px;} } div.column-auto{ - width:auto; - max-width: 98%; + width:auto; max-width: 98%; } } } @@ -2149,12 +2151,13 @@ body.page-node-11187{ overflow:hidden; &>*{ padding: 0 10px;} - img{float:left; padding: 0; } - h2{ text-align: left; margin: 5px 0 0; } + // img{float:left; padding: 0; } + h2{ text-align: left; margin: 5px 0 0 15px;} .subtitle{ - padding: 0 0 0 1em; + padding: 0 0 0 15px; @include fs18; @include italic; @include bold; line-height:1; } + ul{margin: 0; padding: 0 15px;} li{ list-style: none; @include fs12; @@ -2163,22 +2166,30 @@ body.page-node-11187{ @include fs900; } } + .description{ + @include fs12; + margin: 0; padding: 0 15px; + } .get-link{ margin: 0; @include border-radius(0 0 5px 5px); border: 1px solid #fff; min-height: 92px; a{ display:block; width:100%; padding: 15px 0; color:#1A1A1A; text-decoration: none; } } - &.gratos{ .get-link{background-color: #4BA13D; } } - &.flocon{ .get-link{ background-color: #69CDCF; } } - &.etoile { .get-link{ background-color: #D476AE; } } - &.cinqetoiles { .get-link{ background-color: #E6DE1C; } } - &.ecole-de-neige{float: none}; + .get-link{background-color: #C8C8C8; } + &.web{ .get-link{ background-color: #69CDCF; } } + &.webshowroom { .get-link{ background-color: #D476AE; } } + &.pack4 { .get-link{ background-color: #E6DE1C; } } + &.etudiants{ .get-link{background-color: #4BA13D; } }; // &.ecole-de-neige { .list-neige{min-height:80px;} } + &.neutral .get-link{ + min-height: 62px; + padding:15px 0; + } } // end div.column div.column-demi div.column{ h2{ padding:10px 0 0; @include fs24; } - .subtitle{ min-height:3em; } + // .subtitle{ min-height:3em; } .get-link{ padding: 0; @include fs28; text-align: center; @@ -2200,16 +2211,16 @@ body.page-node-11187{ // hide get free account for user already logged-in // hide get flocon for user already flocon (role-6) &.logged-in{ - .column.gratos{.get-link{ - cursor:auto!important; - a{display:none!important;} - }} - &.role-6{ - .column.flocon{.get-link{ - cursor:auto!important; - a{display:none!important;} - }} - } + // .column.gratos{.get-link{ + // cursor:auto!important; + // a{display:none!important;} + // }} + // &.role-6{ + // .column.etudiants{.get-link{ + // cursor:auto!important; + // a{display:none!important;} + // }} + // } } } // princing