Newer
Older
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
@import '../../styles/config/typography.scss';
@import '../../styles/config/layout.scss';
@import '../../styles/config/breakpoints';
@import '../../styles/config/colors';
.prices {
margin-top: $navigator-height;
padding: 1rem;
.title {
margin: 1rem 0;
}
.capital {
text-transform: capitalize;
}
h2 {
margin-bottom: 1rem;
color: $gold;
}
.price-separator {
margin: 1rem 0;
background: white;
}
.flex-bloc {
display: flex;
align-items: center;
.price-select {
position: relative;
}
.euro {
display: block;
margin-left: 0.5rem;
font-weight: bold;
}
.startDate {
margin-left: 1rem;
.date {
margin-left: 0.5rem;
color: $gold;
font-weight: bold;
}
}
}
section {
margin-top: 1rem;
margin-bottom: 2rem;
.history {
button {
@include baseButton();
background: $grey-dark;
border: solid 1px $gold;
display: flex;
align-items: center;
&:hover {
background: $dark-background;
opacity: 0.8;
}
&.active {
border-radius: 5px 5px 0 0;
}
img {
width: 20px;
margin-left: 0.5rem;
}
span {
color: $gold;
}
}
ul {
transition: all 300ms ease;
background: $grey-dark;
border: solid 1px $gold;
padding: 1rem;
.price-hidden {
display: none;
}
li {
transition: all 300ms ease;
margin: 0.5rem 0;
padding: 0.5rem;
.prix {
transition: all 300ms ease;
font-weight: bold;
min-width: 120px;
}
p,
p span {
transition: all 300ms ease;
margin-left: 1rem;
}
img {
cursor: pointer;
width: 22px;
margin-left: auto;
transition: all 300ms ease;
}
}
.price-selected {
background: $gold;
.prix,
p,
p span {
color: black;
}
}
hr {
margin: 0;
background: white;
}
.showButton {
text-align: center;
color: $gold;
}
}
.icon-active {
transform: rotate(180deg);
}
}
}
}