aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/confirm-page-container/confirm-page-container-navigation/index.scss
blob: 0cf184c60587fcbecdd9c5c1c4857f1587c0d494 (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
.confirm-page-container-navigation {
  display: flex;
  justify-content: space-between;
  font: inherit;
  padding: 4px 10px 4px 10px;
  border-bottom: 1px solid $geyser;
  flex: 0 0 auto;

  &__container {
    display: flex;
  }

  &__arrow {
    cursor: pointer;
    display: flex;
    padding-left: 5px;
    padding-right: 5px;
  }
  
  &__arrow:hover {
    -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
          transform: scale(1.1); 
  }

  &__arrow:active {
    -webkit-transform: scale(0.95);
      -moz-transform: scale(0.95);
        -o-transform: scale(0.95);
          transform: scale(0.95); 
  }

  &__textcontainer {
    text-align: center;
  }

  &__navtext {
    font-size: 9px;
    font-weight: bold;
  }

  &__longtext {
    color: $oslo-gray;
    font-size: 8px;
  }

  &__imageflip {
    -webkit-transform: scaleX(-1);
      -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
          transform: scaleX(-1);
  }
}