Newer
Older
@import 'src/styles/base/color';
@import 'src/styles/base/breakpoint';
.konnector-form {
margin: 0;
@media only screen and (min-width : #{$width-large-phone}) {
padding-top: 1rem;
margin: 1rem 1.5rem 2rem 1.5rem;
padding-bottom: 1rem;
}
}
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
.connection-form {
text-align: center;
span {
color: $gold-shadow;
font-weight: bold;
}
.connection-form-title {
margin-top: 0;
padding: 0 1rem;
&.enedissgegrandlyon {
color: $elec-color;
}
&.grdfgrandlyon {
color: $gas-color;
}
&.eglgrandlyon {
color: $water-color;
}
}
.connection-form-subtitle {
color: $white;
}
.connection-form-infotext {
color: $grey-bright;
}
button.btn-secondary-positive {
span:first-child {
color: $grey-bright;
}
}
.connection-form-button {
margin: 0 0.5rem;
button.btn-highlight {
padding: 0.5rem;
margin-top: 0.5rem;
margin-bottom: 0rem;
height: 2.5rem;
max-width: 22.5rem;
}
button.btn-secondary-negative {
padding: 0.5rem;
margin-top: 0.5rem;
margin-bottom: 1.5rem;
height: 2.5rem;
max-width: 22.5rem;
}
}
.connection-form-connect-button {
margin: 0 0.5rem;
button.btn-highlight {
padding: 0.5rem;
margin-top: 0.5rem;
margin-bottom: 1rem;
height: 5rem;
max-width: 22.5rem;
}
button.btn-secondary-negative {
padding: 0.5rem;
margin-top: 1rem;
margin-bottom: 2.5rem;
height: 5rem;
max-width: 22.5rem;
}
&.grdf {
margin-top: 2rem;
}
.connection-form-connect-button-content {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
@media #{$large-phone} {
justify-content: left;
}
.connection-form-connect-button-content-icon {
margin: 0 0.5rem 0 0;
}
.connection-form-connect-button-text {
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
max-width: 13.5rem;
}
}
}
}