forked from raycast/ray-so
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.module.css
72 lines (63 loc) · 1.15 KB
/
code.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
.app {
display: grid;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
grid-template-areas:
"top"
"content"
"footer";
grid-template-columns: 1fr;
grid-template-rows: 15px auto 110px;
isolation: isolate;
}
.footer {
display: flex;
height: 200px;
align-items: flex-end;
justify-content: center;
padding-bottom: 40px;
background-image: url("./assets/footer-background.jpg");
background-position: center -5px;
background-repeat: no-repeat;
background-size: 700px 245px;
color: rgba(255, 255, 255, 0.4);
font-size: 11px;
font-weight: 500;
gap: 40px;
grid-area: footer;
letter-spacing: 0.1px;
line-height: 14px;
> * {
display: flex;
height: 22px;
align-items: center;
}
}
.footerLink {
transition: color 300ms ease;
> svg {
width: 1em;
height: 1em;
margin-left: 4px;
transition: transform 200ms;
}
&:hover {
color: white;
> svg {
transform: translate(2px, -2px);
}
}
}
.madeBy {
gap: 9px;
}
.logoLink {
display: flex;
align-items: center;
transition: transform 300ms ease;
&:hover {
transform: scale(1.05);
}
}