File tree Expand file tree Collapse file tree 3 files changed +61
-3
lines changed Expand file tree Collapse file tree 3 files changed +61
-3
lines changed Original file line number Diff line number Diff line change @@ -1524,6 +1524,42 @@ select {
1524
1524
display : none !important ;
1525
1525
}
1526
1526
1527
+ /* ANIMATED BACKGROUND */
1528
+ .bg-animated {
1529
+ background : linear-gradient (-45deg , # 441580, # 055e6b, # 036042 );
1530
+ background-size : 400% 400% ;
1531
+ -webkit-animation : gradient 20s ease infinite;
1532
+ animation : gradient 20s ease infinite;
1533
+ }
1534
+
1535
+ @-webkit-keyframes gradient {
1536
+ 0% {
1537
+ background-position : 0% 50% ;
1538
+ }
1539
+
1540
+ 50% {
1541
+ background-position : 100% 50% ;
1542
+ }
1543
+
1544
+ 100% {
1545
+ background-position : 0% 50% ;
1546
+ }
1547
+ }
1548
+
1549
+ @keyframes gradient {
1550
+ 0% {
1551
+ background-position : 0% 50% ;
1552
+ }
1553
+
1554
+ 50% {
1555
+ background-position : 100% 50% ;
1556
+ }
1557
+
1558
+ 100% {
1559
+ background-position : 0% 50% ;
1560
+ }
1561
+ }
1562
+
1527
1563
.hero {
1528
1564
background-image : url ('/images/map.jpg' );
1529
1565
background-size : cover;
@@ -1720,3 +1756,4 @@ select {
1720
1756
grid-column : span 1 / span 1 ;
1721
1757
}
1722
1758
}
1759
+
Original file line number Diff line number Diff line change 6
6
display : none !important ;
7
7
}
8
8
9
+ /* ANIMATED BACKGROUND */
10
+ .bg-animated {
11
+ background : linear-gradient (-45deg , # 441580, # 055e6b, # 036042 );
12
+ background-size : 400% 400% ;
13
+ animation : gradient 20s ease infinite;
14
+ }
15
+
16
+ @keyframes gradient {
17
+ 0% {
18
+ background-position : 0% 50% ;
19
+ }
20
+
21
+ 50% {
22
+ background-position : 100% 50% ;
23
+ }
24
+
25
+ 100% {
26
+ background-position : 0% 50% ;
27
+ }
28
+ }
29
+
9
30
.hero {
10
31
background-image : url ('/images/map.jpg' );
11
32
background-size : cover;
32
53
33
54
.changelog ul li {
34
55
@apply ml-8 text-gray-300
35
- }
56
+ }
Original file line number Diff line number Diff line change 5
5
6
6
<div class =" grid grid-cols-2 md:grid-cols-3 gap-8" >
7
7
<div class =" col-span-2 md:col-span-3" >
8
- <div class = " rounded-lg " style = " background : linear-gradient ( -45 deg , #441580 , #055e6b ); " >
9
- <div class =" rounded-lg lg:text-center p-6 lg:py-24" >
8
+ <div >
9
+ <div class =" rounded-lg lg:text-center p-6 lg:py-24 bg-animated " >
10
10
<h1 class =" text-3xl lg:text-5xl font-bold" >
11
11
Generate complex map markers on the fly.
12
12
</h1 >
You can’t perform that action at this time.
0 commit comments