Skip to content

Commit 8b7bb61

Browse files
authored
Merge pull request #115 from kiwiupover/add-post-ember-conf-meetup-link
Adding post emberconf 2021 fastboot meetup link
2 parents e96b269 + 13cb2ea commit 8b7bb61

5 files changed

Lines changed: 75 additions & 1 deletion

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<a
2+
href="https://www.eventbrite.com/e/ember-fastboot-ssr-beyond-tickets-144468965565"
3+
class="main-hero-meetup"
4+
target="_blank"
5+
rel="noopener">
6+
<div class="content">
7+
<p class="invite">
8+
Join us
9+
<span class="orange">&nbsp;Wednesday April 14th</span>
10+
<span class="small">&nbsp;at 4:30pm pst</span>
11+
</p>
12+
Ember Fastboot SSR & Beyond Meetup
13+
</div>
14+
<div class="button">
15+
Register
16+
</div>
17+
</a>

app/components/main-hero/template.hbs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@
2626
User Guide
2727
{{/link-to}}
2828
</div>
29+
30+
{{main-hero/meetup}}
2931
</div>

app/styles/app.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
@import "components/command-prompt";
77
@import "components/fastboot-logo";
88
@import "components/main-hero";
9+
@import "components/main-hero-meetup";
910
@import "components/main-hero-terminal";
1011
@import "components/main-nav";
1112
@import "components/syntax";
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.main-hero-meetup {
2+
background: rgba(0, 0, 0, 0.33);
3+
border-radius: 0.25em;
4+
color: var(--white);
5+
display: flex;
6+
font-size: 1.125rem;
7+
align-items: center;
8+
padding: 1rem;
9+
display: grid;
10+
grid-gap: 2rem;
11+
margin: 1rem 0 2rem;
12+
grid-template-columns: repeat(3, 1fr);
13+
cursor: pointer;
14+
text-decoration: none;
15+
border: none;
16+
}
17+
18+
.main-hero-meetup:hover, .main-hero-meetup:focus {
19+
color: var(--white);
20+
}
21+
22+
.main-hero-meetup .content {
23+
grid-column: 1 / span 2;
24+
font-size: 110%;
25+
}
26+
27+
.main-hero-meetup .small {
28+
font-size: 90%;
29+
}
30+
31+
.main-hero-meetup .invite {
32+
margin: 0;
33+
font-size: 1rem;
34+
margin-bottom: 0.25rem;
35+
}
36+
37+
.main-hero-meetup .button {
38+
align-items: center;
39+
text-align: center;
40+
border-radius: 0.25rem;
41+
border: 2px solid var(--white);
42+
min-width: 10em;
43+
padding: 0.55em 2em 0.75em;
44+
text-align: center;
45+
text-decoration: none;
46+
}
47+
48+
.orange {
49+
color: #FFA91B;
50+
}

app/styles/components/main-hero.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
text-transform: lowercase;
3030
}
3131

32-
3332
.main-hero-requirements {
3433
color: rgba(255, 255, 255, 0.25);
3534
font-size: var(--h6);
@@ -54,6 +53,11 @@
5453
margin-bottom: 30px;
5554
}
5655

56+
.main-hero-button.small {
57+
padding: 0.4em 1.3em 0.6em;
58+
font-size: 90%;
59+
}
60+
5761
.main-hero-terminal pre,
5862
.main-hero-terminal code {
5963
background: none;

0 commit comments

Comments
 (0)