Skip to content

Meetup section #133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2019
Merged
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
78 changes: 78 additions & 0 deletions src/components/HomeMeetup/Index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<template>
<v-container class="home-meetup">
<v-layout
row
wrap
class="home-meetup__title-row text-xs-center">
<v-flex
sm12
md2
class="home-meetup__icon-wrapper" >
<i class="fab fa-meetup home-meetup__icon"/>
</v-flex>
<v-flex
sm12
md10>
<h2 class="home-meetup__title">No te pierdas nuestro próximo evento.</h2>
<h3 class="home-meetup__subtitle">Únete a ~3K personas en Meetup</h3>
<br>
<a
href="https://www.meetup.com/es/Open-Source-Weekends/?chapter_analytics_code=UA-86095652-1"
title="Únete al Meetup"
class="home-meetup__btn"
target="_black">únete al Meetup</a>
</v-flex>
</v-layout>
</v-container>
</template>

<style lang="stylus" scoped>
.home-meetup

&__title-row
padding-left 20px
color #fff

&__title
font-size 40px
font-weight 100

&__subtitle
font-size 40px
// font-weight 100

&__icon-wrapper
justify-content center
align-content center
display flex

&__icon
font-size 180px

&__btn
&,
&:link,
&:visited
text-transform uppercase
text-decoration none
font-weight 600
margin-right 10px
background-color transparent
color #fff
padding 0.75em 1.25em
transition all .2s
border-radius 6px
border 1px solid rgba(255,255,255,0.5);
box-shadow 0 5px 10px rgba(#000, .2)

&:hover
background-color #fff
color: #1c299d
box-shadow 0 10px 20px rgba(#000, .2)
backface-visibility hidded

&:active,
&:focus
outline none;
box-shadow 0 5px 10px rgba(#000, .2)
</style>
7 changes: 5 additions & 2 deletions src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
<home-communities/>
</section>

<!-- Slack -->
<!-- Meetup -->
<section class="slack-section">
<home-slack/>
<home-meetup/>
</section>

<!-- Video -->
Expand All @@ -62,7 +62,9 @@
import HomeTeam from '~/components/HomeTeam/Index.vue'
import HomeCommunities from '~/components/HomeCommunities/Index.vue'
import HomeSponsors from '~/components/HomeSponsors/Index.vue'
import HomeMeetup from '~/components/HomeMeetup/Index.vue'
import HomeVideo from '~/components/HomeVideo/Index.vue'


import axios from 'axios'

Expand Down Expand Up @@ -95,6 +97,7 @@
HomeTeam,
HomeCommunities,
HomeSponsors,
HomeMeetup,
HomeVideo
},
data() {
Expand Down