-
Notifications
You must be signed in to change notification settings - Fork 511
/
Copy pathfooter.module.css
76 lines (59 loc) · 1.36 KB
/
footer.module.css
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
.Container {
@apply col-span-full lg:col-start-2 lg:col-end-5;
/* Avoid overlap with AI button */
@apply pb-16;
}
.InnerContainer {
@apply flex flex-col items-center justify-between py-8;
}
.Separator {
@apply w-full border-t-gray-30;
}
:global(.dark) .Separator {
@apply border-t-gray-90 !important;
}
.Navigation {
@apply flex gap-8 mt-4 mb-2;
}
.Link {
@apply text-gray-90 text-base tracking-tight leading-7 font-bold hover:opacity-70;
}
:global(.dark) .Link {
@apply text-gray-40 !important;
}
.SocialNetworks {
@apply flex flex-wrap justify-center items-center gap-4;
}
.IconLink {
@apply relative rounded-full overflow-hidden flex justify-center items-center px-2 sm:p-2 hover:opacity-100 hover:scale-105 hover:bg-gray-10;
}
.IconContainer {
@apply text-base;
}
.Icon {
@apply w-6 h-6 flex fill-gray-60;
}
/* Colors for hover states */
.IconLink:hover .GitHubIcon {
@apply fill-brand-GitHub;
}
.IconLink:hover .YouTubeIcon {
@apply fill-brand-YouTube;
}
.IconLink:hover .TwitterIcon {
@apply fill-brand-Twitter;
}
.IconLink:hover .LinkedInIcon {
@apply fill-brand-LinkedIn;
}
.IconLink:hover .NewsletterIcon path {
@apply stroke-red-70;
}
.Copyright {
@apply text-base tracking-tight leading-7 mt-2;
@apply text-gray-60 !important;
}
.CookiePolicy {
@apply ml-2 cursor-pointer;
@apply hover:opacity-80 hover:underline;
}