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
120
121
122
123
124
125
126
127
128
@import '../base/color';
@import '../base/breakpoint';
//SelectFluid
.sf {
display: flex;
flex-direction: column;
.sf-header {
.sf-header-title {
color: $text-bright;
}
.sf-header-text {
color: $text-dark;
}
}
.sf-content {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 3rem;
.sf-link {
margin: 1rem;
}
}
}
//FluidContainer
.fc-root {
background-color: $dark-light-2;
padding: 2rem 2rem 1rem 2rem;
margin-bottom: 1rem;
@media #{$large-phone} {
padding: 1.5rem 1rem 1rem 1rem;
margin-bottom: 0.5rem;
}
.fc-content {
min-height: 31.875rem;
@media #{$large-phone} {
min-height: 23.875rem;
}
.fc-loader {
min-height: 31.875rem;
@media #{$large-phone} {
min-height: 23.875rem;
}
display: flex;
justify-content: center;
align-items: center;
}
}
}
//FluidView
.fv-root {
direction: 'rtl';
.fv-nav-period {
display: flex;
flex-direction: row;
& .nav-button {
flex: 1;
font-size: large;
}
}
.fv-header {
display: flex;
flex-direction: column;
align-items: center;
min-height: 8.375rem;
margin-bottom: 0.25rem;
}
.fv-footer {
display: flex;
justify-content: center;
.fv-footer-compare {
width: 100%;
max-width: 58.75rem;
display: flex;
flex-direction: row;
align-items: center;
& :hover {
cursor: pointer;
}
& .fv-footer-label {
flex: 1;
display: flex;
justify-content: flex-start;
color: $text-dark;
&.selected {
color: $text-white;
}
}
}
.fv-footer-challenge {
width: 100%;
max-width: 58.75rem;
display: flex;
flex-direction: row;
align-items: center;
& .fv-footer-label-padding {
flex: 1;
display: flex;
justify-content: flex-start;
padding-left: 0.75rem;
color: $text-dark;
}
}
}
}
//FluidSwipe
.fs-root {
flex: 1;
height: 22rem;
@media #{$large-phone} {
height: 14rem;
}
.fs-slide {
min-height: 22rem;
overflow-x: hidden;
display: flex;
justify-content: center;
align-items: center;
@media #{$large-phone} {
min-height: 14rem;
}
}
}
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// Enedis Half Hour Load Activation
.cta-box {
background-color:rgba(18, 18, 18, 0.7);
position: absolute;
padding: 0rem 1rem 0rem 0rem;
z-index: 1;
display: flex;
justify-content: center;
flex-direction: column;
@media #{$large-phone} {
height: 26.5rem;
}
height: 34.5rem;
.cta-box-header {
text-align: center;
font-weight: bold;
letter-spacing: 0.2px;
margin-bottom: 1.5em;
color: $text-bright;
}
.cta-box-button {
margin-left: auto;
margin-right: auto;
width: 80%;
}
}