-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartners.css
More file actions
120 lines (110 loc) · 2.3 KB
/
Copy pathpartners.css
File metadata and controls
120 lines (110 loc) · 2.3 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
.partner-logo{
text-align: center !important;
}
.marquee-parent{
display: flex;
justify-content: center;
align-items: center;
}
:root {
--marquee-width: 90vw;
--marquee-height: 30vh;
--marquee-elements-displayed: 3;
--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
--marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}
.marquee img{
height: 9rem;;
display: inline-block;
max-width: 20rem;
}
.marquee {
width: var(--marquee-width);
height: var(--marquee-height);
color: #eee;
overflow: hidden;
position: relative;
}
.marquee:before, .marquee:after {
position: absolute;
top: 0;
width: 10rem;
height: 100%;
content: "";
z-index: 1;
}
.marquee:before {
left: 0;
}
.marquee:after {
right: 0;
}
.marquee-content {
list-style: none;
height: 100%;
display: flex;
animation: scrolling var(--marquee-animation-duration) linear infinite;
}
@keyframes scrolling {
0% { transform: translateX(0); }
100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
width: var(--marquee-element-width);
max-height: 100%;
font-size: calc(var(--marquee-height)*3/4);
white-space: nowrap;
}
@media all and (max-width: 1000px){
:root{
--marquee-width: 100vw;
--marquee-elements-displayed: 2.5;
}
}
@media all and (max-width: 800px){
.marquee-parent {
font-size: 12px;
}
:root {
--marquee-elements-displayed: 2;
}
.marquee img {
height: 6rem;
}
.marquee:before, .marquee:after {
width: 6rem;
}
}
@media all and (max-width: 800px){
.marquee-parent {
font-size: 12px;
}
:root {
--marquee-elements-displayed: 2.5;
}
.marquee img {
height: 6rem;
}
.marquee:before, .marquee:after {
width: 6rem;
}
}
@media all and (max-width: 550px){
.marquee-parent {
font-size: 12px;
}
:root {
--marquee-elements-displayed: 1;
}
.marquee img {
height: 6rem;
width: fit-content;
}
.marquee:before, .marquee:after {
width: 3rem;
}
}