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
@import "./variables";
@import "./globals";
nav {
@include nav-height();
width: 100%;
position: fixed;
z-index: 100;
background: radial-gradient(
74.83% 76.97% at 50% 13.64%,
#343641 0%,
#1b1c22 100%
);
padding: 1rem 4rem;
display: flex;
justify-content: space-between;
transition: all 300ms ease;
.main-logo {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.5rem;
}
.links {
display: flex;
align-items: center;
gap: 3.5rem;
.navlink {
text-decoration: none;
font-weight: 700;
}
}
@media (max-width: $breakpoint) {
.main-logo {
margin: auto;
}
.links {
display: none;
}
}
}
.container {
padding: 0 1rem;
@media (min-width: $breakpoint) {
padding: 0;
}
}
.main-cta {
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
padding-left: 2rem;
gap: 1rem;
.illu {
order: 1;
}
.content-txt {
order: 2;
}
.mglLogo {
order: 3;
}
h2 {
margin-top: 1.5rem;
font-weight: 700;
ul {
padding-top: 1rem;
li {
margin-bottom: 0.5rem;
.button {
margin: 2rem 0;
@include button($black, $yellow);
font-size: 1.25rem;
text-align: center;
justify-content: center;
gap: 0.5rem;
font-weight: 700;
line-height: 115%;
padding: 0.5rem 1rem 0.5rem 0.5rem;
background: radial-gradient(
105.25% 64.58% at 49.68% 70.83%,
rgba(226, 137, 4, 0.5) 0%,
rgba(255, 255, 255, 0) 100%
),
$yellow;
img {
transform: translate(0, 2px);
}
}
}
.illu {
@media (max-width: $breakpoint) {
width: 100%;
@media (max-width: $breakpoint) {
margin-top: 0;
}
}
}
.explanation {
background: $bg-light;
text-align: center;
padding-top: 5rem;
@media (max-width: $breakpoint) {
}
.compteurs {
display: flex;
align-items: center;
justify-content: center;
margin-top: 7rem;
& > *:not(:last-child) {
margin-right: 0.8rem;
}
@media (max-width: $breakpoint) {
flex-direction: column;
& > div:not(.gaz-color) {
margin-bottom: 2rem;
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
}
span {
margin-bottom: 5rem;
}
}
span {
color: $grey;
font-size: 1.1rem;
}
.bloc {
width: 280px;
height: 280px;
padding: 0.5rem;
background: linear-gradient(180deg, #323339 0%, #25262b 100%);
border: solid 1px;
border-radius: 4px;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.55);
display: flex;
flex-direction: column;
position: relative;
transition: all 300ms ease;
&:hover {
box-shadow: 0 0 10px 0 currentColor;
}
h3 {
color: currentColor;
margin-top: 8rem;
font-weight: 900;
font-size: 2rem;
}
.compteur-img {
position: absolute;
top: -6rem;
left: 0;
right: 0;
margin: auto;
}
p {
padding-top: 0.5rem;
}
.provider-logo {
margin-top: auto;
display: flex;
height: 35px;
img {
margin: auto;
}
}
}
.elec-color {
color: $elec-color;
border-color: rgba($elec-color, 0.4);
}
.gaz-color {
color: $gaz-color;
border-color: rgba($gaz-color, 0.4);
}
.water-color {
color: $water-color;
border-color: rgba($water-color, 0.4);
}
}
.fluid-pipes {
margin-top: 1.5rem;
img {
@media (max-width: $breakpoint) {
width: 100%;
}
}
}
}
.security {
background: radial-gradient(
105.25% 64.58% at 49.68% 70.83%,
rgba(226, 137, 4, 0.5) 0%,
rgba(255, 255, 255, 0) 100%
),
$yellow;
display: flex;
margin-top: -1rem;
position: relative;
&:before,
&::after {
content: "";
display: inline-block;
position: absolute;
width: 100%;
height: 10px;
left: 0;
background-image: url("assets/pattern-dot.svg");
background-color: $dark-yellow;
background-repeat: repeat-x;
background-position: center;
z-index: 1;
}
&::before {
top: -0.5rem;
}
&:after {
bottom: -0.5rem;
}
.container {
max-width: 1400px;
margin: 0 auto;
}
.container-cloud {
display: flex;
position: relative;
padding: 7rem 0 2rem;
justify-content: space-between;
align-items: center;
@media (min-width: $breakpoint) {
padding: 3rem 0;
}
}
p {
color: $black;
font-size: 1.5rem;
font-weight: 700;
flex-basis: 40%;
&:nth-of-type(1) {
text-align: right;
}
}
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
.xs-text {
display: block;
flex-basis: 100%;
text-align: center;
@media (min-width: $breakpoint) {
display: none;
}
}
.xl-text {
display: none;
line-height: 140%;
@media (min-width: $breakpoint) {
display: block;
}
}
.container-img {
position: absolute;
z-index: 2;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
@media (max-width: $breakpoint) {
top: -70px;
transform: translateX(-50%);
width: 45%;
}
img {
width: 100%;
}
}
}
.views-app {
background: $bg-light;
padding-bottom: 2rem;
@media (max-width: $breakpoint) {
padding-bottom: 0;
}
.content {
max-width: 945px;
width: 100%;
margin: 0 auto;
}
.fluid-pipes {
text-align: center;
@media (max-width: $breakpoint) {
display: none;
}
img {
transform: translate(0, -25px);
}
}
.screens-container {
display: flex;
justify-content: center;
@media (max-width: $breakpoint) {
flex-direction: column;
margin-top: 0.5rem;
.screen {
text-align: center;
padding-top: 6rem;
position: relative;
&:before,
&:after {
content: "";
display: inline-block;
height: 100px;
width: 1px;
background: $yellow;
position: absolute;
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
top: 0;
z-index: 1;
}
&::before {
left: 48%;
transform: translateX(-50%);
}
&::after {
left: 52%;
transform: translateX(-50%);
}
}
img {
width: 90%;
position: relative;
z-index: 2;
}
p {
margin: 1.5rem 0;
}
}
.screen {
&.consumption,
&.ecogesture {
margin-top: 0;
@media (min-width: $breakpoint) {
margin-top: -8rem;
}
}
&.challenge {
@media (min-width: $breakpoint) {
margin-top: -4rem;
}
}
p {
font-weight: 700;
line-height: 120%;
margin-top: 1rem;
}
&.consumption {
@media (min-width: $breakpoint) {
margin-right: -5.5rem;
}
span {
color: $elec-color;
}
}
&.challenge {
span {
color: $light-blue;
}
}
&.ecogesture {
@media (min-width: $breakpoint) {
margin-left: -5.5rem;
}
span {
color: $fluid-color;
}
}
}
}
p {
line-height: 24px;
font-size: 1.25rem;
text-align: center;
margin: 1.5rem 0;
@media (min-width: $breakpoint) {
margin: 2rem 0 0;
}
span {
display: block;
font-size: 1.5rem;
}
}
}
.create-account {
background-color: $black;
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
@media all and (max-width: $breakpoint) {
padding: 2rem 0;
.container {
padding: 0;
h2,
p {
padding: 0 1rem;
}
}
.content .button {
width: 100%;
font-size: 1.25rem;
padding: 1rem;
text-align: center;
}
}
h2 {
margin-bottom: 2rem;
}
.warning,
.warning2 {
padding: 1rem 0;
width: 100vw;
background-image: url(assets/pattern-wip.svg);
background-repeat: repeat-x;
}
.warning {
padding-top: 2rem;
background-position: top;
}
.warning2 {
background-position: bottom;
}
.container {
max-width: $content-width;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
a.button {
@include button($black, $yellow);
font-size: 1.25rem;
text-align: center;
justify-content: center;
font-weight: 700;
background: radial-gradient(
105.25% 64.58% at 49.68% 70.83%,
rgba(226, 137, 4, 0.5) 0%,
rgba(255, 255, 255, 0) 100%
),
#f1c017;
}
}
}
.steps {
background: $bg-light;
.containerSteps {
max-width: 1000px;
margin: auto;
.step {
display: flex;
gap: 1rem;
margin: 2.5rem 0;
@media all and (max-width: $large-device) {
flex-direction: column;
align-items: center;
}
.flex {
display: flex;
gap: 1rem;
}
}
.number {
font-size: 5rem;
margin-top: -0.5rem;
// margin-right: 1.5rem;
@media all and (max-width: $large-device) {
margin-top: 0;
font-size: 3rem;
}
}
.text > p {
color: white;
text-align: left;
}
.content {
@media all and (max-width: $large-device) {
font-size: 1rem;
}
}
.header {
font-weight: 900;
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
margin-bottom: 0.5rem;
@media all and (max-width: $large-device) {
font-size: 1.2rem;
}
}
.content {
font-size: 1.2rem;
font-weight: 400;
}
.gaz-color {
color: $gaz-color;
}
.water-color {
color: $water-color;
}
.elec-color {
color: $elec-color;
}
.gl-color {
color: $gl-red;
}
.button {
@include button($black, $yellow);
margin: auto;
font-size: 1.5rem;
text-align: center;
justify-content: center;
font-weight: 700;
padding: 2rem 3rem;
border-radius: 4px;
background: radial-gradient(
105.25% 64.58% at 49.68% 70.83%,
rgba(226, 137, 4, 0.5) 0%,
rgba(255, 255, 255, 0) 100%
),
$yellow;
}
}
}
.cloud-gl {
padding: 2rem 1rem;
background: $black;
color: white;
.text-content {
max-width: 689px;
text-align: center;
margin: 0 auto;
}
h2 {
font-size: 1.75rem;
font-weight: 900;
margin: 1rem;
}
p {
line-height: 1.463rem;
padding: 0;
}
.button {
display: inline-block;
background: $red-alert;
text-align: center;
border-radius: 4px;
padding: 12px 16px;
margin-top: 1.25rem;
text-decoration: none;
max-width: 221px;
font-size: 1.125rem;
font-weight: 700;
line-height: 1.238rem;
transition: all 0.4s;
&:hover {
box-shadow: 0px 0px 10px 0px $red-alert;
}
}
}
footer {
background-color: $black;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
padding: 1rem 2rem;
padding-top: 5rem;
.logos-footer {
display: flex;
align-items: center;
gap: 1.5rem;
}
.footerLink {
color: $yellow;
font-weight: 900;
}
.contact {
display: flex;
gap: 1rem;
}
.info {
display: flex;
align-items: center;
font-weight: 700;
gap: 0.5rem;
a {
text-decoration: none;
}
}
@media (max-width: $breakpoint) {
flex-direction: column;
padding: 2rem 1rem 1rem;
.contact {
order: 1;
flex-direction: column;
align-items: center;
}
.logos-footer {
order: 2;
flex-direction: column;
}
.info {
order: 4;
transform: scale(0.8);
}
.legal-notice {
order: 3;
}
}
}