-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved homepage (conservative) (#47)
- Loading branch information
1 parent
7f0ba5f
commit 0f5662d
Showing
8 changed files
with
196 additions
and
59 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,28 +1,18 @@ | ||
.backdrop { | ||
padding: 6rem 0; | ||
text-align: center; | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
|
||
.title { | ||
font-size: 4.5rem; | ||
font-weight: 300; | ||
line-height: 1em; | ||
} | ||
|
||
.ctas { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 16px; | ||
} | ||
|
||
@media screen and (max-width: 996px) { | ||
.backdrop { | ||
padding: 2rem; | ||
} | ||
.platforms { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 8px; | ||
|
||
.title { | ||
font-size: 3rem; | ||
img { | ||
max-width: 24px; | ||
max-height: 24px; | ||
} | ||
} |
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,4 +1,5 @@ | ||
.introRow { | ||
align-items: center; | ||
justify-content: center; | ||
.example { | ||
max-width: 45rem; | ||
margin: 0 auto; | ||
font-size: 1.125rem; | ||
} |
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,10 +1,14 @@ | ||
export const feature = `@tag | ||
Feature: Eating too many cucumbers may not be good for you | ||
export const feature = `Feature: Withdrawing cash | ||
Eating too much of anything may not be good for you | ||
Scenario: Eating a few is no problem | ||
Given Alice is hungry | ||
When she eats 3 cucumbers | ||
Then she will be full | ||
Rule: Customers cannot withdraw more than their balance | ||
Scenario: Successful withdrawal within balance | ||
Given Alice has $234.56 in their account | ||
When Alice tries to withdraw $200.00 | ||
Then the withdrawal is successful | ||
Scenario: Declined withdrawal in excess of balance | ||
Given Hamza has $198.76 in their account | ||
When Hamza tries to withdraw $200.00 | ||
Then the withdrawal is declined | ||
` |