_activation-step.scss
2.01 KB
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
.Activation-Step {
min-height: 100vh;
}
.upload-smartphone {
.wrapper-input {
width: 225px;
margin-top: -20px;
input {
width: 100%;
margin-bottom: 10px;
}
.validationIcon {
top: 32px;
}
}
}
.attivazione-doc-list {
.add-bill {
height: 70px;
transitions: .3s ease;
&.open {
height: 162px;
}
}
}
.upload-smartphone-retry {
input {
height: 60px;
width: 100%;
padding-left: 10px;
box-sizing: border-box;
border: 1px solid #DEDEDE;
pointer-events: none;
background: none;
font-family: TheMixB-W6SemiBold;
font-size: 24px;
color: $darkGray;
letter-spacing: 4px;
text-align: center;
text-transform: uppercase;
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: $darkGray;
}
::-moz-placeholder {
/* Firefox 19+ */
color: $darkGray;
}
:-ms-input-placeholder {
/* IE 10+ */
color: $darkGray;
}
:-moz-placeholder {
/* Firefox 18- */
color: $darkGray;
}
&:focus {
outline: none;
box-shadow: 0;
border: 1px solid #DEDEDE;
}
}
}
.upload-smartphobe-footer {
text-align: center;
p {
margin-bottom: 0;
}
a {
color: $darkGray;
font-size: 1.6rem;
}
}
.Activation-Step {
.stickyMobile {
left: 0;
transform: none;
top: 80px;
height: 82px;
@include bp-medium {
top: -300px;
}
}
.stickyMobile.sticky {
transform: none;
top: 0;
}
}
.attivazione-landing {
.stickyMobile {
transform: none;
top: 80px;
position: fixed;
.stickyNav {
border-bottom: 8px solid #A0AC12;
}
.close--header {
display: none;
transform: translate(200%);
@include bp-medium {
display: block;
transform: translate(0)
}
}
@include bp-large {
top: 0;
left: 0;
}
}
.stickyMobile.sticky {
transform: none;
top: 0;
.stickyNav {
border-bottom: 0;
}
.close--header {
display: block;
transform: translate(0);
@include bp-medium {
display: none;
}
}
}
}