-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Ryan Yang <[email protected]>
- Loading branch information
1 parent
0166718
commit 8dcd935
Showing
5 changed files
with
110 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/app/pages/Designathons/Designathon24/components/Sponsors/Sponsors.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
.sponsors { | ||
position: relative; | ||
background-color: var(--des24-black); | ||
background-image: url("../../assets/graphics/background/dark_splash.svg"); | ||
background-repeat: repeat-y; | ||
background-size: 100% auto; | ||
|
||
.heading { | ||
color: var(--des24-hot-pink); | ||
font-size: 3rem; | ||
font-weight: 700; | ||
margin-bottom: 4rem; | ||
|
||
@media screen and (min-width: 640px) { | ||
font-size: 5rem; | ||
} | ||
|
||
@media screen and (min-width: 1280px) { | ||
font-size: 6rem; | ||
} | ||
} | ||
|
||
.content { | ||
max-width: 1280px; | ||
} | ||
|
||
& .logos { | ||
padding-top: 60px; | ||
display: grid; | ||
column-gap: 80px; | ||
row-gap: 80px; | ||
width: 100%; | ||
grid-template-columns: repeat(1, 1fr); | ||
place-content: center; | ||
|
||
@media screen and (min-width: 800px) { | ||
max-height: none; | ||
grid-template-columns: repeat(3, 1fr); | ||
} | ||
|
||
& > div { | ||
display: grid; | ||
place-content: center; | ||
} | ||
|
||
& img { | ||
max-height: 200px; | ||
width: 100%; | ||
object-fit: contain; | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
src/app/pages/Designathons/Designathon24/components/Sponsors/index.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import cn from "./Sponsors.module.scss"; | ||
import { Section } from "app/Symbols"; | ||
|
||
import FOF from "../../assets/FOF.png"; | ||
import notion from "../../assets/notion.png"; | ||
import balsamiq from "../../assets/balsamiq.png"; | ||
|
||
const Sponsors = () => { | ||
return ( | ||
<div className={cn.sponsors} id="s-sponsors"> | ||
<Section> | ||
<div className={cn.content}> | ||
<h2 className={cn.heading}>Sponsors</h2> | ||
<div className={cn.logos}> | ||
<div> | ||
<a | ||
href="https://friends.figma.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img src={FOF} alt="Friends of Figma" /> | ||
</a> | ||
</div> | ||
<div> | ||
<a | ||
href="https://www.notion.so/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
{" "} | ||
<img src={notion} alt="Notion" /> | ||
</a> | ||
</div> | ||
<div> | ||
<a | ||
href="https://balsamiq.com/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img src={balsamiq} alt="balsamiq" /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</Section> | ||
</div> | ||
); | ||
}; | ||
|
||
export { Sponsors }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters