-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into contribute-2
- Loading branch information
Showing
32 changed files
with
310 additions
and
71 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
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,10 @@ | ||
<div class="personal-appeal"> | ||
<div class="container"> | ||
<a href="https://opencollective.com/babel"> | ||
<img src="/images/appeal_blank.png" /> | ||
<span id="fieri_quote">We're on Open Collective!</span> | ||
</a> | ||
</div> | ||
</div> | ||
<script src='/scripts/textFit.js' type="text/javascript"></script> | ||
<script src='/scripts/flavortown.flavors.js' type="text/javascript"></script> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```sh | ||
npm install -D fly-babel babel-preset-latest | ||
npm install -D fly-babel babel-preset-env | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```sh | ||
npm install babel-cli babel-preset-latest --save-dev | ||
npm install babel-cli babel-preset-env --save-dev | ||
``` |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,9 @@ | |
margin-bottom: 32px; | ||
min-height: 90px; | ||
} | ||
h3 { | ||
font-size: 22px; | ||
} | ||
} | ||
|
||
h2 { | ||
|
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,34 @@ | ||
.personal-appeal { | ||
background: #000; | ||
|
||
.container { | ||
position: relative; | ||
} | ||
#fieri_quote { | ||
position: absolute; | ||
white-space: pre-wrap; | ||
top: 35%; | ||
left: 5.15%; | ||
color: #eee; | ||
height: 30%; | ||
width: 63%; | ||
font-size: 26px; // What you see is what you get with me. There's no show. | ||
&.animating { | ||
animation: 1s ease-in-out fade; | ||
} | ||
} | ||
@keyframes fade { | ||
0% { | ||
opacity: 1; | ||
} | ||
50% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
img { | ||
width: 100%; | ||
} | ||
} |
Oops, something went wrong.