File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change 44
44
cursor : pointer;
45
45
}
46
46
47
+ .banner-container {
48
+ justify-content : center;
49
+ display : flex;
50
+ }
51
+
52
+ .banner {
53
+ background-color : rgb (255 , 128 , 128 );
54
+ padding : 20px 40px 10px 40px ;
55
+ border-radius : 0px 0px 15px 15px ;
56
+ filter : drop-shadow (3px 3px 3px );
57
+ font-size : x-large;
58
+ animation : banner-ease ease-in-out 2.0s forwards;
59
+ text-align : center;
60
+ cursor : default;
61
+ }
62
+
63
+ @keyframes banner-ease {
64
+ from {
65
+ transform : translateY (-7vw );
66
+ }
67
+ to {
68
+ transform : translateY (-25px );
69
+ }
70
+ }
71
+
47
72
.rotate-effect {
48
73
transition : transform 1.5s ease;
49
74
}
@@ -144,9 +169,9 @@ body {
144
169
font-weight : 100 ;
145
170
}
146
171
147
- .content a {
172
+ /* .content a {
148
173
cursor: default;
149
- }
174
+ } */
150
175
151
176
.about a ,
152
177
.four-o-four a {
Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ const HomeScreen = ({ theme, toggleTheme }) => (
13
13
< div className = "content" >
14
14
< Switch >
15
15
< Route exact path = "/" >
16
+ < div className = "banner-container" >
17
+ < div className = "banner" >
18
+ < span role = "img" aria-label = "nerd" > 🤓</ span >
19
+ < span > Studying for the final? </ span >
20
+ < a href = "https://forms.gle/j9iMhFi8drjf2PU86" target = "_blank" rel = "noreferrer" > Tell us how we can improve!</ a >
21
+ </ div >
22
+ </ div >
16
23
< div className = "outer-flex" >
17
24
< div className = "inner-flex" >
18
25
{ algoList . map ( ( name , idx ) =>
You can’t perform that action at this time.
0 commit comments