File tree Expand file tree Collapse file tree 2 files changed +21
-4
lines changed
src/components/AnnualReport Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 65
65
66
66
.image {
67
67
position : absolute;
68
+ transform : perspective (1500px ) rotateY (15deg );
69
+ box-shadow : rgba (0 , 0 , 0 , 0.25 ) 0px 25px 50px -12px ;
70
+ transition : transform 1s ease 0s ;
71
+ will-change : transform;
68
72
69
73
@media (--ktl-mm) {
70
74
width : 256px ;
82
86
}
83
87
}
84
88
89
+ .imageContainer : hover .image : nth-child (1 ) {
90
+ transform : perspective (3000px ) rotateY (0deg ) translateX (-18px ) translateY (-6px );
91
+ }
92
+
85
93
.image : nth-child (2 ) {
86
94
top : 48px ;
87
95
left : 72px ;
92
100
}
93
101
}
94
102
103
+ .imageContainer : hover .image : nth-child (2 ) {
104
+ transform : perspective (3000px ) rotateY (0deg );
105
+ }
106
+
95
107
.image : nth-child (3 ) {
96
108
top : 72px ;
97
109
left : 96px ;
102
114
}
103
115
}
104
116
117
+ .imageContainer : hover .image : nth-child (3 ) {
118
+ transform : perspective (3000px ) rotateY (0deg ) translateX (18px ) translateY (6px );
119
+ }
120
+
105
121
.textContainer {
106
122
display : flex;
107
123
flex-direction : column;
113
129
114
130
@media (--ktl-tl) {
115
131
position : relative;
132
+ width : unset;
116
133
padding : 0 ;
117
134
z-index : 1 ;
118
135
}
Original file line number Diff line number Diff line change
1
+ import Button from "@rescui/button" ;
2
+ import cn from "classnames" ;
1
3
import * as styles from "./annualReport.module.css" ;
2
4
import report1KotlinResults from "./assets/1-kotlin-results.png" ;
3
5
import report2MissionRecap from "./assets/2-mission-recap.png" ;
4
6
import report3FoundationResults from "./assets/3-foundation-results.png" ;
5
- import cn from "classnames" ;
6
- import Button from "@rescui/button" ;
7
7
8
8
export function AnnualReport ( ) {
9
9
const renderButton = ( className : string ) => (
10
10
< Button
11
11
className = { className }
12
12
mode = "outline"
13
13
size = "l"
14
- // TODO: Update link to the actual report
15
- href = "/kotlin-foundation-presentation .pdf"
14
+ // TODO: upload actual pdf file with the report
15
+ href = "/annual-report-2023 .pdf"
16
16
target = "_blank"
17
17
>
18
18
View annual report
You can’t perform that action at this time.
0 commit comments