-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
71 lines (62 loc) · 1.3 KB
/
app.css
File metadata and controls
71 lines (62 loc) · 1.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
@import "tailwindcss";
@font-face {
src: url("/softpoint/assets/fonts/Poppins-Regular.ttf");
font-family: Poppins;
font-weight: 400;
font-display: swap;
}
@font-face {
src: url("/softpoint/assets/fonts/Poppins-Medium.ttf");
font-family: Poppins;
font-weight: 500;
font-display: swap;
}
@font-face {
src: url("/softpoint/assets/fonts/Poppins-SemiBold.ttf");
font-family: Poppins;
font-weight: 600;
font-display: swap;
}
@font-face {
src: url("/softpoint/assets/fonts/Poppins-Bold.ttf");
font-family: Poppins;
font-weight: 700;
font-display: swap;
}
body {
font-family: Poppins;
color: #021206;
}
/* Marquee styles */
.marquee {
padding-top: 3rem;
padding-bottom: 3rem;
background: #f6fcfa;
--gap: 3rem;
position: relative;
display: flex;
overflow: hidden;
user-select: none;
gap: var(--gap);
}
.marquee__content {
flex-shrink: 0;
display: flex;
justify-content: space-around;
align-items: center;
gap: var(--gap);
min-width: 100%;
animation: scroll 10s linear infinite;
}
@keyframes scroll {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(-100% - var(--gap)));
}
}
html {
scroll-behavior: smooth;
scroll-padding-top: 125px;
}