File tree Expand file tree Collapse file tree 5 files changed +22
-81
lines changed Expand file tree Collapse file tree 5 files changed +22
-81
lines changed Original file line number Diff line number Diff line change @@ -4,21 +4,13 @@ import Button from '@/components/button';
44export default function GetInvolved ( ) {
55 return (
66 < div className = { styles . getinvolved } >
7- < div className = { styles . showcasecontainer } >
8- < div className = { styles . showcaseimage } />
9- < a href = "https://plasmastarfish.itch.io/six-shooter" >
10- < p > "Six Shooter" by plasmastarfish</ p >
11- </ a >
12- </ div >
13- < div >
14- < div className = { styles . card } >
15- < div className = { styles . label } > Get Involved</ div >
16- Join the global team behind the most popular Python game framework. Ranging from documentation revisions to
17- introducing new features to the pygame API.
18- < div style = { { display : 'flex' , marginTop : '10px' } } >
19- < Button text = "GitHub" fontSize = "1.2rem" link = "https://github.com/pygame-community" />
20- < Button text = "Discord" fontSize = "1.2rem" link = "https://discord.gg/pygame" />
21- </ div >
7+ < div className = { styles . card } >
8+ < div className = { styles . label } > Get Involved</ div >
9+ Join the global team behind the most popular Python game framework. Ranging from documentation revisions to
10+ introducing new features to the pygame API.
11+ < div style = { { display : 'flex' , marginTop : '10px' } } >
12+ < Button text = "GitHub" fontSize = "1.2rem" link = "https://github.com/pygame-community" />
13+ < Button text = "Discord" fontSize = "1.2rem" link = "https://discord.gg/pygame" />
2214 </ div >
2315 </ div >
2416 </ div >
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import styles from '@/styles/powered.module.css';
33import drawnDownAbyss1 from '@/assets/drawn-down-abyss-1.png' ;
44import froggo1 from '@/assets/froggo-swing-n-grapple-1.png' ;
55import resync1 from '@/assets/resync-1.png' ;
6+ import sixshooter1 from '@/assets/six-shooter-1.png' ;
67import tuxemon1 from '@/assets/tuxemon-1.png' ;
78import PoweredCard from './powered-card' ;
89
@@ -38,6 +39,12 @@ const games = [
3839 image : tuxemon1 . src ,
3940 mainlink : 'https://github.com/Tuxemon/Tuxemon' ,
4041 } ,
42+ {
43+ name : 'Six Shooter' ,
44+ author : 'plasmastarfish' ,
45+ image : sixshooter1 . src ,
46+ mainlink : 'https://plasmastarfish.itch.io/six-shooter' ,
47+ } ,
4148] ;
4249
4350class Powered extends React . Component < any , any > {
Original file line number Diff line number Diff line change 11import Head from 'next/head' ;
2- import styles from '@/styles/Home.module.css' ;
32import Navbar from '@/components/nav-bar' ;
43import Hero from '@/components/hero' ;
54import About from '@/components/about' ;
@@ -16,7 +15,7 @@ export default function Home() {
1615 < meta name = "viewport" content = "width=device-width, initial-scale=1" />
1716 < link rel = "icon" href = "/favicon.ico" />
1817 </ Head >
19- < main className = { styles . main } >
18+ < main >
2019 < Navbar />
2120 < Hero />
2221 < About />
Original file line number Diff line number Diff line change 99}
1010
1111.textcontainer {
12- font-size : 3.5rem ;
13- }
14-
15- .disclaimer {
16- font-size : 1rem ;
12+ font-size : 3vw ;
1713}
1814
1915.pipinstallcontainer {
2016 width : max-content;
2117 background-color : rgb (20 , 20 , 20 );
22- border-radius : 0.25em ;
23- padding : 0.25em 0.5em ;
24-
25- margin-top : 0.5em ;
18+ border-radius : 1vw ;
19+ padding : 1vw ;
20+ margin-top : 8px ;
2621}
2722
2823.pipinstall {
29- font-size : 1.2 rem ;
24+ font-size : 1.2 vw ;
3025 font-family : 'Source Code Pro' , monospace;
3126
3227 overflow : hidden;
4742}
4843
4944.showcaseimage {
50- width : 750 px ;
51- height : 600 px ;
45+ width : 45 vw ;
46+ height : 38 vw ;
5247 border-radius : 10px ;
5348 background-color : aliceblue;
5449 background-image : url (https://i.imgur.com/7mOk5E7.gif);
8681 }
8782}
8883
89- @media only screen and (max-width : 1500px ) {
90- .textcontainer {
91- font-size : 3rem ;
92- }
93-
94- .pipinstall {
95- font-size : 1rem ;
96- }
97-
98- .showcasecontainer {
99- font-size : 0.7rem ;
100- }
101-
102- .showcaseimage {
103- width : 500px ;
104- height : 400px ;
105- }
106- }
107-
108- @media only screen and (max-width : 1200px ) {
109- .textcontainer {
110- font-size : 2.3rem ;
111- }
112-
113- .pipinstall {
114- font-size : 0.6rem ;
115- }
116-
117- .showcasecontainer {
118- font-size : 0.7rem ;
119- }
120-
121- .showcaseimage {
122- width : 375px ;
123- height : 300px ;
124- }
125- }
126-
12784@media only screen and (max-width : 950px ) {
128- .textcontainer {
129- font-size : 1.9rem ;
130- }
131-
13285 .showcasecontainer {
13386 display : none;
13487 }
13588}
13689
13790@media only screen and (max-width : 600px ) {
138- .textcontainer {
139- font-size : 1.5rem ;
140- }
141-
142- .pipinstall {
143- font-size : 0.5rem ;
144- padding : 15px ;
145- border-radius : 10px ;
146- }
147-
14891 .pipinstallcontainer ,
14992 .pipinstall {
15093 display : none;
You can’t perform that action at this time.
0 commit comments