diff --git a/web/sites/development.services.yml b/web/sites/development.services.yml index d2857c6..cc931e1 100644 --- a/web/sites/development.services.yml +++ b/web/sites/development.services.yml @@ -3,6 +3,56 @@ # To activate this feature, follow the instructions at the top of the # 'example.settings.local.php' file, which sits next to this file. parameters: + twig.config: + # Twig debugging: + # + # When debugging is enabled: + # - The markup of each Twig template is surrounded by HTML comments that + # contain theming information, such as template file name suggestions. + # - Note that this debugging markup will cause automated tests that directly + # check rendered HTML to fail. When running automated tests, 'debug' + # should be set to FALSE. + # - The dump() function can be used in Twig templates to output information + # about template variables. + # - Twig templates are automatically recompiled whenever the source code + # changes (see auto_reload below). + # + # For more information about debugging Twig templates, see + # https://www.drupal.org/node/1906392. + # + # Not recommended in production environments + # @default false + debug: true + # Twig auto-reload: + # + # Automatically recompile Twig templates whenever the source code changes. + # If you don't provide a value for auto_reload, it will be determined + # based on the value of debug. + # + # Not recommended in production environments + # @default null + auto_reload: null + # Twig cache: + # + # By default, Twig templates will be compiled and stored in the filesystem + # to increase performance. Disabling the Twig cache will recompile the + # templates from source each time they are used. In most cases the + # auto_reload setting above should be enabled rather than disabling the + # Twig cache. + # + # Not recommended in production environments + # @default true + cache: false + # Cacheability debugging: + # + # Responses with cacheability metadata (CacheableResponseInterface instances) + # get X-Drupal-Cache-Tags and X-Drupal-Cache-Contexts headers. + # + # For more information about debugging cacheable responses, see + # https://www.drupal.org/developing/api/8/response/cacheable-response-interface + # + # Not recommended in production environments + # @default false http.response.debug_cacheability_headers: true services: cache.backend.null: diff --git a/web/themes/custom/reha/css/reha.css b/web/themes/custom/reha/css/reha.css index f7640b7..3a476ed 100644 --- a/web/themes/custom/reha/css/reha.css +++ b/web/themes/custom/reha/css/reha.css @@ -1,11 +1,6 @@ /*reha*/ /*global*/ -@font-face { - font-family: 'Font Awesome'; - src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2"); - font-weight: 400; - font-style: normal; } - +/* Colors used for REHA */ /*marianne*/ @font-face { font-family: 'Marianne'; @@ -79,21 +74,20 @@ font-weight: 1000; font-style: italic; } -/* Source Code Pro */ +/*Font Awesome*/ @font-face { - font-family: 'Source Code Pro'; - src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff"); - font-weight: 500; - font-style: normal; } - -@font-face { - font-family: 'Source Code Pro'; - src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff"); - font-weight: 1000; + font-family: 'Font Awesome'; + src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2"); + font-weight: 400; font-style: normal; } .layout-container { + position: relative; + width: 100vw; + background-color: rgba(153, 147, 174, 0.1); font-family: 'Marianne'; + font-weight: 400; + font-style: normal; margin: none; top: 0%; left: 0%; @@ -118,45 +112,60 @@ main { .main-content { margin-top: 7rem; } -/* Colors used for EQL */ +ul { + list-style-type: none; } + +a { + text-decoration: none; } + +:link { + color: black; } + +.field--type-link { + width: 45%; + text-transform: uppercase; + padding: 1rem; + border: solid black 1px; + margin-bottom: 1rem; + background-color: white; } + /*partials*/ -.layout-container { - position: relative; +header { + display: block; + width: 100%; + background-color: white; + position: fixed; + z-index: 99; width: 100vw; - background-color: rgba(153, 147, 174, 0.1); } - .layout-container header { - display: block; - width: 100%; - background-color: white; - position: fixed; - z-index: 99; - width: 100vw; - position: -webkit-sticky; - position: sticky; - top: 0; } - .layout-container header .sticky { - position: fixed; } - .layout-container header div { - display: flex; - flex-direction: row; } + position: -webkit-sticky; + position: sticky; + top: 0; } + header .sticky { + position: fixed; } + header div { + display: flex; + flex-direction: row; } footer { - background-color: white; } + background-color: white; + font-family: "Marianne"; + font-weight: 800; } footer div { display: flex; flex: 1 1 120px; flex-direction: row; } + footer div h2 { + font-family: 'Marianne'; } #block-reha-pieddepage { - font-family: 'Marianne-Bold'; } + font-size: 1.5rem; } #block-reha-operateurduprogramme { display: flex; flex-direction: column; - border-left: #fdc300 solid 1px; - border-right: #fdc300 solid 1px; - padding-left: 3rem; - font-family: 'Marianne-Bold'; } + border-left: #fdc300 solid 5px; + border-right: #fdc300 solid 5px; + padding-left: 3rem; } #block-reha-config-pages-2 { margin-left: 3rem; @@ -164,3 +173,16 @@ footer { width: 20%; display: flex; flex-direction: column; } + +.layout--onecol { + width: 70%; + margin: auto; + font-size: 1.5rem; + font-weight: 400; + font-style: normal; } + .layout--onecol .block-region-content .block-block-content1ca95211-9fa2-4ef2-a460-8184d1eaf20f { + display: flex; + justify-content: flex-end; } + .layout--onecol .block-region-content .block-block-content1dd151e8-8a8b-4586-9e62-8905ba0c93e0 { + display: flex; + justify-content: flex-end; } diff --git a/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.eot b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.eot differ diff --git a/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.svg b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + diff --git a/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.ttf b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.ttf differ diff --git a/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.woff b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.woff differ diff --git a/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.woff2 b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/web/themes/custom/reha/fonts/Font Awesome/fontawesome-webfont.woff2 differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.eot b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.eot new file mode 100644 index 0000000..a132ecb Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.eot differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.otf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.otf new file mode 100644 index 0000000..d16f4b0 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.otf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.svg b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.svg new file mode 100644 index 0000000..aeda2cb --- /dev/null +++ b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.svg @@ -0,0 +1,2993 @@ + + + diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.ttf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.ttf new file mode 100644 index 0000000..b337b44 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.ttf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.woff b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.woff new file mode 100644 index 0000000..e93316a Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBold-webfont.woff differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.eot b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.eot new file mode 100644 index 0000000..de4d8f5 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.eot differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.otf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.otf new file mode 100644 index 0000000..23bee2c Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.otf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.svg b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.svg new file mode 100644 index 0000000..92686f9 --- /dev/null +++ b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.svg @@ -0,0 +1,2281 @@ + + + diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.ttf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.ttf new file mode 100644 index 0000000..f1cf34a Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.ttf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.woff b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.woff new file mode 100644 index 0000000..878b8de Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBoldItalic-webfont.woff differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.eot b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.eot new file mode 100644 index 0000000..99ec38c Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.eot differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.otf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.otf new file mode 100644 index 0000000..2cdaf9b Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.otf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.svg b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.svg new file mode 100644 index 0000000..c2dba30 --- /dev/null +++ b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.svg @@ -0,0 +1,6382 @@ + + + diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.ttf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.ttf new file mode 100644 index 0000000..c38f475 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.ttf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.woff b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.woff new file mode 100644 index 0000000..2a02c4b Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBook-webfont.woff differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.eot b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.eot new file mode 100644 index 0000000..d303aba Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.eot differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.otf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.otf new file mode 100644 index 0000000..fde6c43 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.otf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.svg b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.svg new file mode 100644 index 0000000..da067fe --- /dev/null +++ b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.svg @@ -0,0 +1,6377 @@ + + + diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.ttf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.ttf new file mode 100644 index 0000000..ede1729 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.ttf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.woff b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.woff new file mode 100644 index 0000000..7d68991 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookDot-webfont.woff differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.eot b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.eot new file mode 100644 index 0000000..34c06f1 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.eot differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.otf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.otf new file mode 100644 index 0000000..b5fcbc5 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.otf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.svg b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.svg new file mode 100644 index 0000000..817845b --- /dev/null +++ b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.svg @@ -0,0 +1,1552 @@ + + + diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.ttf b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.ttf new file mode 100644 index 0000000..2a1bea4 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.ttf differ diff --git a/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.woff b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.woff new file mode 100644 index 0000000..3004362 Binary files /dev/null and b/web/themes/custom/reha/fonts/Manifont-Grotesk-master_Webfont/ManifontGroteskBookItalic-webfont.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Bold.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold.woff new file mode 100644 index 0000000..335e348 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Bold.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold.woff2 new file mode 100644 index 0000000..4a5b7b2 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Bold_Italic.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold_Italic.woff new file mode 100644 index 0000000..72878fc Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold_Italic.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Bold_Italic.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold_Italic.woff2 new file mode 100644 index 0000000..31494ac Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Bold_Italic.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold.woff new file mode 100644 index 0000000..ad85a55 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold.woff2 new file mode 100644 index 0000000..b98ec4f Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold_Italic.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold_Italic.woff new file mode 100644 index 0000000..af92ea7 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold_Italic.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold_Italic.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold_Italic.woff2 new file mode 100644 index 0000000..c4ec1c0 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-ExtraBold_Italic.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Light.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Light.woff new file mode 100644 index 0000000..9ef49df Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Light.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Light.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Light.woff2 new file mode 100644 index 0000000..b29a01f Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Light.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Light_Italic.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Light_Italic.woff new file mode 100644 index 0000000..5ae0dbe Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Light_Italic.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Light_Italic.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Light_Italic.woff2 new file mode 100644 index 0000000..ccf9c8e Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Light_Italic.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Medium.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium.woff new file mode 100644 index 0000000..692476e Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Medium.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium.woff2 new file mode 100644 index 0000000..8877ade Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Medium_Italic.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium_Italic.woff new file mode 100644 index 0000000..8e32b88 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium_Italic.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Medium_Italic.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium_Italic.woff2 new file mode 100644 index 0000000..28b5040 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Medium_Italic.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Regular.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular.woff new file mode 100644 index 0000000..a95a2d0 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Regular.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular.woff2 new file mode 100644 index 0000000..5d6517c Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Regular_Italic.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular_Italic.woff new file mode 100644 index 0000000..1880c5d Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular_Italic.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Regular_Italic.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular_Italic.woff2 new file mode 100644 index 0000000..30e8934 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Regular_Italic.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Thin.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin.woff new file mode 100644 index 0000000..6c8bc5a Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Thin.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin.woff2 new file mode 100644 index 0000000..1ec57f7 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin.woff2 differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Thin_Italic.woff b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin_Italic.woff new file mode 100644 index 0000000..4c23d6b Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin_Italic.woff differ diff --git a/web/themes/custom/reha/fonts/Marianne/Marianne-Thin_Italic.woff2 b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin_Italic.woff2 new file mode 100644 index 0000000..d3978b9 Binary files /dev/null and b/web/themes/custom/reha/fonts/Marianne/Marianne-Thin_Italic.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf new file mode 100644 index 0000000..bbbbf64 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf.woff new file mode 100644 index 0000000..aef6c22 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf.woff2 new file mode 100644 index 0000000..3c4aec4 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.ttf new file mode 100644 index 0000000..1cba216 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Black.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf new file mode 100644 index 0000000..9835c17 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf.woff new file mode 100644 index 0000000..19ea5fa Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf.woff2 new file mode 100644 index 0000000..5dc1d83 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.ttf new file mode 100644 index 0000000..498d9af Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BlackIt.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf new file mode 100644 index 0000000..f4e576c Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf.woff new file mode 100644 index 0000000..a6cd0f1 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf.woff2 new file mode 100644 index 0000000..4efbf29 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.ttf new file mode 100644 index 0000000..dd00982 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Bold.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf new file mode 100644 index 0000000..681a937 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf.woff new file mode 100644 index 0000000..9a93e24 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf.woff2 new file mode 100644 index 0000000..b17651b Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.ttf new file mode 100644 index 0000000..0734c6a Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-BoldIt.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf new file mode 100644 index 0000000..de41f8b Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf.woff new file mode 100644 index 0000000..22ee4a1 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf.woff2 new file mode 100644 index 0000000..4af3968 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.ttf new file mode 100644 index 0000000..e7d364e Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLight.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf new file mode 100644 index 0000000..49813d0 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf.woff new file mode 100644 index 0000000..37bb5e4 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf.woff2 new file mode 100644 index 0000000..4175e00 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.ttf new file mode 100644 index 0000000..dca439b Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-ExtraLightIt.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf new file mode 100644 index 0000000..0ab9eea Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf.woff new file mode 100644 index 0000000..40ab0ae Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf.woff2 new file mode 100644 index 0000000..c389335 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.ttf new file mode 100644 index 0000000..efc777e Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-It.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf new file mode 100644 index 0000000..834a29b Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf.woff new file mode 100644 index 0000000..28c796c Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf.woff2 new file mode 100644 index 0000000..289b6c9 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.ttf new file mode 100644 index 0000000..1ad6fa2 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Light.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf new file mode 100644 index 0000000..cd833d2 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf.woff new file mode 100644 index 0000000..a9185a9 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf.woff2 new file mode 100644 index 0000000..cf705a3 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.ttf new file mode 100644 index 0000000..68c2913 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-LightIt.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf new file mode 100644 index 0000000..c5dddda Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf.woff new file mode 100644 index 0000000..36073cf Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf.woff2 new file mode 100644 index 0000000..0cce5e9 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.ttf new file mode 100644 index 0000000..52342f4 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Medium.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf new file mode 100644 index 0000000..77cd5da Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf.woff new file mode 100644 index 0000000..a9924c3 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf.woff2 new file mode 100644 index 0000000..2e83e59 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.ttf new file mode 100644 index 0000000..68c3036 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-MediumIt.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf new file mode 100644 index 0000000..4e3b9d0 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf.woff new file mode 100644 index 0000000..33b5534 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf.woff2 new file mode 100644 index 0000000..aae63a9 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.ttf new file mode 100644 index 0000000..1decfb9 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Regular.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf new file mode 100644 index 0000000..2c4b5b4 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf.woff new file mode 100644 index 0000000..22d56eb Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf.woff2 new file mode 100644 index 0000000..3a24fb6 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.ttf new file mode 100644 index 0000000..ae85746 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-Semibold.ttf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf new file mode 100644 index 0000000..cb064e7 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf.woff b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf.woff new file mode 100644 index 0000000..f3fee74 Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf.woff differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf.woff2 b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf.woff2 new file mode 100644 index 0000000..4c3638d Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.otf.woff2 differ diff --git a/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.ttf b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.ttf new file mode 100644 index 0000000..4f83c4d Binary files /dev/null and b/web/themes/custom/reha/fonts/source-code-pro/SourceCodePro-SemiboldIt.ttf differ diff --git a/web/themes/custom/reha/reha.theme b/web/themes/custom/reha/reha.theme index a6cac98..8dd953f 100644 --- a/web/themes/custom/reha/reha.theme +++ b/web/themes/custom/reha/reha.theme @@ -9,7 +9,11 @@ * Implements hook_preprocess_HOOK() for html.html.twig. */ function reha_preprocess_html(&$variables) { - + $node = \Drupal::routeMatch()->getParameter('node'); + if ($node){ + $variables['attributes']['class'][] = 'node-type-' . $node->bundle(); + $variables['attributes']['class'][] = 'node-id-' . $node->id(); + } } /** @@ -23,5 +27,6 @@ function reha_preprocess_page(&$variables) { * Implements hook_preprocess_HOOK() for node.html.twig. */ function reha_preprocess_node(&$variables) { - + $node = &$variables['node']; + $variables['attributes']['class'][] = 'node-type-' . $node->gettype(); } diff --git a/web/themes/custom/reha/scss/global/_fonts.scss b/web/themes/custom/reha/scss/global/_fonts.scss index c5e466a..be94680 100644 --- a/web/themes/custom/reha/scss/global/_fonts.scss +++ b/web/themes/custom/reha/scss/global/_fonts.scss @@ -1,9 +1,3 @@ -@font-face { - font-family: 'Font Awesome'; - src: url('../fonts/Font Awesome/fontawesome-webfont.woff2') format('woff2'); - font-weight: 400; - font-style: normal; -} /*marianne*/ @@ -104,21 +98,11 @@ font-style: italic; } - -/* Source Code Pro */ +/*Font Awesome*/ @font-face { - font-family: 'Source Code Pro'; - src: url('../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2') format('woff2'), - url('../fonts/source-code-pro/SourceCodePro-Medium.otf.woff') format('woff'); - font-weight: 500; - font-style: normal; -} - -@font-face { - font-family: 'Source Code Pro'; - src: url('../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2') format('woff2'), - url('../fonts/source-code-pro/SourceCodePro-Bold.otf.woff') format('woff'); - font-weight: 1000; + font-family: 'Font Awesome'; + src: url('../fonts/Font Awesome/fontawesome-webfont.woff2') format('woff2'); + font-weight: 400; font-style: normal; } \ No newline at end of file diff --git a/web/themes/custom/reha/scss/global/_layout.scss b/web/themes/custom/reha/scss/global/_layout.scss index 220a616..769aaf3 100644 --- a/web/themes/custom/reha/scss/global/_layout.scss +++ b/web/themes/custom/reha/scss/global/_layout.scss @@ -1,7 +1,12 @@ .layout-container { + position: relative; + width: 100vw; + background-color: $background-home; font-family: 'Marianne'; + font-weight: 400; + font-style: normal; margin: none; top: 0%; left: 0%; @@ -21,6 +26,7 @@ flex: 0 0 100%; } } + .layout-content{ padding-top: 7rem; padding-bottom: 6rem; @@ -29,6 +35,8 @@ main{ width: 100%; } + .main-content{ margin-top: 7rem; } + diff --git a/web/themes/custom/reha/scss/global/_reset.scss b/web/themes/custom/reha/scss/global/_reset.scss new file mode 100644 index 0000000..1a00f12 --- /dev/null +++ b/web/themes/custom/reha/scss/global/_reset.scss @@ -0,0 +1,9 @@ +ul{ + list-style-type: none; +} +a{ + text-decoration: none; +} +:link{ + color: black; +} \ No newline at end of file diff --git a/web/themes/custom/reha/scss/global/variables/_buttons.scss b/web/themes/custom/reha/scss/global/variables/_buttons.scss new file mode 100644 index 0000000..491c5fd --- /dev/null +++ b/web/themes/custom/reha/scss/global/variables/_buttons.scss @@ -0,0 +1,12 @@ + +// home +.field--type-link{ + width: 45%; + text-transform: uppercase; + padding: 1rem; + border: solid black 1px; + margin-bottom: 1rem; + background-color: white; +} + + diff --git a/web/themes/custom/reha/scss/global/variables/_colors.scss b/web/themes/custom/reha/scss/global/variables/_colors.scss index 87205d8..dd961ea 100644 --- a/web/themes/custom/reha/scss/global/variables/_colors.scss +++ b/web/themes/custom/reha/scss/global/variables/_colors.scss @@ -1,5 +1,5 @@ -/* Colors used for EQL */ +/* Colors used for REHA */ diff --git a/web/themes/custom/reha/scss/pages/_home.scss b/web/themes/custom/reha/scss/pages/_home.scss new file mode 100644 index 0000000..fa52f3b --- /dev/null +++ b/web/themes/custom/reha/scss/pages/_home.scss @@ -0,0 +1,16 @@ +.layout--onecol{ + width: 70%; + margin: auto; + font-size: 1.5rem; + font-weight: 400; + font-style: normal; + .block-region-content{ + + .block-block-content1ca95211-9fa2-4ef2-a460-8184d1eaf20f{ + display: flex; + justify-content: flex-end; } + .block-block-content1dd151e8-8a8b-4586-9e62-8905ba0c93e0{ + display: flex; + justify-content: flex-end; } + } +} diff --git a/web/themes/custom/reha/scss/partials/_footer.scss b/web/themes/custom/reha/scss/partials/_footer.scss index 15563f5..650e3fc 100644 --- a/web/themes/custom/reha/scss/partials/_footer.scss +++ b/web/themes/custom/reha/scss/partials/_footer.scss @@ -4,12 +4,16 @@ footer{ // flex-direction: row; background-color: white; - // padding-top: 3rem; + font-family: "Marianne"; + font-weight: 800; + div{ display: flex; flex: 1 1 120px; flex-direction: row; - + h2{ + font-family: 'Marianne'; + } } } @@ -17,18 +21,20 @@ footer{ } -#block-reha-pieddepage{ - font-family: 'Marianne-Bold'; +#block-reha-pieddepage { + // background-color: yellowgreen; + // font-family: 'Marianne'; + font-size: 1.5rem; } #block-reha-operateurduprogramme{ display: flex; flex-direction: column; - border-left: #fdc300 solid 1px; - border-right: #fdc300 solid 1px; + border-left: #fdc300 solid 5px; + border-right: #fdc300 solid 5px; padding-left: 3rem; - font-family: 'Marianne-Bold'; + // font-family: 'Marianne'; } diff --git a/web/themes/custom/reha/scss/partials/_header.scss b/web/themes/custom/reha/scss/partials/_header.scss index 894118f..df1a7a1 100644 --- a/web/themes/custom/reha/scss/partials/_header.scss +++ b/web/themes/custom/reha/scss/partials/_header.scss @@ -1,9 +1,4 @@ -.layout-container{ - position: relative; - width: 100vw; - background-color: rgba(153, 147, 174, 0.1); - header{ display: block; @@ -26,7 +21,6 @@ } -} diff --git a/web/themes/custom/reha/scss/reha.scss b/web/themes/custom/reha/scss/reha.scss index ac52c80..52b845d 100644 --- a/web/themes/custom/reha/scss/reha.scss +++ b/web/themes/custom/reha/scss/reha.scss @@ -1,11 +1,17 @@ /*reha*/ /*global*/ -@import "global/_fonts.scss"; -@import "global/_layout.scss"; -// @import "global/variables/_typography.scss"; -@import "global/variables/_colors.scss"; +@import "global/variables/_colors"; +@import "global/variables/_typography.scss"; +@import "global/_fonts"; +@import "global/_layout"; +@import "global/_reset"; + +@import "global/variables/_buttons.scss"; + /*partials*/ -@import "partials/_header.scss"; -@import "partials/_footer.scss"; +@import "partials/_header"; +@import "partials/_footer"; + +@import "pages/_home"; \ No newline at end of file diff --git a/web/themes/custom/reha/templates/block.html.twig b/web/themes/custom/reha/templates/block.html.twig new file mode 100644 index 0000000..57d1d41 --- /dev/null +++ b/web/themes/custom/reha/templates/block.html.twig @@ -0,0 +1,47 @@ +{# +/** + * @file + * Default theme implementation to display a block. + * + * Available variables: + * - plugin_id: The ID of the block implementation. + * - label: The configured label of the block if visible. + * - configuration: A list of the block's configuration values. + * - label: The configured label for the block. + * - label_display: The display settings for the label. + * - provider: The module or other provider that provided this block plugin. + * - Block plugin specific settings will also be stored here. + * - in_preview: Whether the plugin is being rendered in preview mode. + * - content: The content of this block. + * - attributes: array of HTML attributes populated by modules, intended to + * be added to the main container tag of this template. + * - id: A valid HTML ID and guaranteed unique. + * - title_attributes: Same as attributes, except applied to the main title + * tag that appears in the template. + * - title_prefix: Additional output populated by modules, intended to be + * displayed in front of the main title tag that appears in the template. + * - title_suffix: Additional output populated by modules, intended to be + * displayed after the main title tag that appears in the template. + * + * @see template_preprocess_block() + * + * @ingroup themeable + */ +#} +{% + set classes = [ + 'block', + 'block-' ~ configuration.provider|clean_class, + 'block-' ~ plugin_id|clean_class, + ] +%} +