aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/recipes.scss
blob: 1b519a5e5d658686fd56fb513ede9faad2b8dbd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@import './config.scss';

.recipes {
  .recipes__list {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    min-height: 70%;
    height: auto;

    &.recipes__list--disabled {
      opacity: 0.3;
      filter: grayscale(100%);
      pointer-events: none;
    }
  }

  .recipes__navigation {
    height: auto;
    margin-bottom: 35px;

    .badge {
      margin-right: 10px;
    }

    &.recipes__navigation--disabled {
      opacity: 0.3;
      filter: grayscale(100%);
      pointer-events: none;
    }
  }

  &__service-request {
    float: right;
  }
}

.recipe-teaser {
  position: relative;
  width: calc(25% - 20px);
  height: 120px;
  margin: 0 20px 20px 0;
  border-radius: $theme-border-radius;
  background-color: $theme-gray-lightest;
  transition: background $theme-transition-time;
  overflow: hidden;

  &:hover {
    background-color: $theme-gray-lighter;
  }

  .recipe-teaser__icon {
    width: 50px;
    margin-bottom: 10px;
  }

  .recipe-teaser__label {
    display: block;
  }

  h2 {
    z-index: 10;
  }

  &__dev-badge {
    position: absolute;
    top: 5px;
    right: -13px;
    width: 50px;
    background: $theme-brand-warning;
    color: #FFF;
    font-size: 10px;
    transform: rotateZ(45deg);
    box-shadow: 0 0 4px rgba(black, 0.2);
  }
}