Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ const Layout = ({ children, title = "This is the default title" }: Props) => {
<hr className="navbar-divider" />
<a className="navbar-item">General Meetings</a>
<a className="navbar-item">Conferences</a>
<a className="navbar-item" href="podcast">
podcast</a>
</div>
</div>

Expand Down
36 changes: 36 additions & 0 deletions pages/podcast.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import Layout from "../components/Layout";

const Podcast = () =>(
<Layout title="SHPE Podcast">
<div className="has-text-link-dark has-text-centered title is-1 has-text-weight-bold"
style={{ marginBottom: ".75em" }}
>
Podcast
</div>
<div
className="container podcastVideo "
>
<div
className=" is-felx column is-flex-wrap-wrap"
style={{marginLeft:"10%"}}

>
<div
className=" is-flex is-half"
>
<iframe width="650" height="315" src="https://www.youtube-nocookie.com/embed/xov60UwCQXs" title="YouTube video player"
frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="website"></iframe>
</div>
</div>
</div>

<div className="container is-flex is-half" style={{textAlign:"center", marginTop:"2em",marginLeft:"20%",marginRight:"15%",fontSize:"125%" }}>
Get closer to la familia with the podcast! Listen to fellow member discussing
and chatting on latest industrial and on-campus news.
Along with that get insight on job oppotunity and interview process.
</div>

</Layout>
);

export default Podcast;
10 changes: 10 additions & 0 deletions theming/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,17 @@ div .officer:hover span .email {
color: $primary !important
}
/////////////////////////////////////////////
///////////////podcast///////////
.podcastVideo{
transition: transform 1000ms;
}

.podcastVideo:hover{
transform: scale(1.08);
filter: drop-shadow(-3px 11px 44px rgba(0, 0, 0, 0.3));
z-index: 1;
}
/////////////////////////////////////
///////////////////Getting involved//////////

.itemCard {
Expand Down