453d8b24feb7da82072cd3a58b17f5a99948fa72
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / css / components / content-types / recipe / recipe.css
1 /**
2 * @file
3 * This file is used to style the recipe using the 'full' view mode.
4 */
5
6 .node--type-recipe.node--view-mode-full .field--name-field-summary,
7 .node--type-recipe.node--view-mode-full .field--name-field-recipe-instruction ol {
8   /* Limit text width for legibility */
9   max-width: 796px;
10 }
11
12 .node--type-recipe.node--view-mode-full .field--name-field-summary {
13   max-width: 796px;
14 }
15
16 .node--type-recipe.node--view-mode-full .field--name-field-image {
17   background-color: #fcece7;
18   background-image: url(../../../../images/png/umami-background-pattern-1.png);
19 }
20
21 .node--type-recipe.node--view-mode-full .field--name-field-image img {
22   display: block;
23 }
24
25 @media screen and (min-width: 786px) {
26   .node--type-recipe.node--view-mode-full .field--name-field-image img {
27     max-width: 796px;
28   }
29 }
30
31 /* Icons for the recipe meta fields */
32 .node--type-recipe.node--view-mode-full .field--name-field-preparation-time,
33 .node--type-recipe.node--view-mode-full .field--name-field-cooking-time,
34 .node--type-recipe.node--view-mode-full .field--name-field-number-of-servings,
35 .node--type-recipe.node--view-mode-full .field--name-field-difficulty {
36   align-items: center;
37   min-height: 40px;
38   margin-bottom: 0.96em;
39   padding-left: 48px;
40   background-repeat: no-repeat;
41   background-position: left center;
42   background-size: 40px 40px;
43 }
44 .node--type-recipe.node--view-mode-full .field--name-field-preparation-time {
45   background-image: url(../../../../images/svg/knife.svg);
46 }
47 .node--type-recipe.node--view-mode-full .field--name-field-cooking-time {
48   background-image: url(../../../../images/svg/timer.svg);
49 }
50 .node--type-recipe.node--view-mode-full .field--name-field-number-of-servings {
51   background-image: url(../../../../images/svg/serves.svg);
52 }
53 .node--type-recipe.node--view-mode-full .field--name-field-difficulty {
54   background-image: url(../../../../images/svg/difficulty.svg);
55 }