blob: d9a4202a44b5aa3c87484a3a96771c40c54c8d6c (
plain) (
blame)
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
|
/*
Trumps
*/
// Transitions
/* universal */
.app-primary .main-enter {
position: absolute;
width: 100%;
}
/* center position */
.app-primary.from-right .main-enter-active,
.app-primary.from-left .main-enter-active {
overflow-x: hidden;
transform: translateX(0);
transition: transform 300ms ease-in;
}
/* exited positions */
.app-primary.from-left .main-leave-active {
transform: translateX(360px);
transition: transform 300ms ease-in;
}
.app-primary.from-right .main-leave-active {
transform: translateX(-360px);
transition: transform 300ms ease-in;
}
.sidebar.from-left {
transform: translateX(-320px);
transition: transform 300ms ease-in;
}
/* loader transitions */
.loader-enter,
.loader-leave-active {
opacity: 0;
transition: opacity 150 ease-in;
}
.loader-enter-active,
.loader-leave {
opacity: 1;
transition: opacity 150 ease-in;
}
/* entering positions */
.app-primary.from-right .main-enter:not(.main-enter-active) {
transform: translateX(360px);
}
.app-primary.from-left .main-enter:not(.main-enter-active) {
transform: translateX(-360px);
}
i.fa.fa-question-circle.fa-lg.menu-icon {
font-size: 18px;
}
// This text is contained inside a div.
// ID needed to override user agent stylesheet.
// See components/modal.scss
/* stylelint-disable */
#buy-modal-content-footer-text {
font-family: 'DIN OT';
font-size: 16px;
}
/* stylelint-enable */
|