-
Notifications
You must be signed in to change notification settings - Fork 10
my simple work #6
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
Open
Aszmel
wants to merge
6
commits into
D0man:develop
Choose a base branch
from
Aszmel:master
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,100 @@ | ||
| body { | ||
| margin: 0px; | ||
| color: whitesmoke; | ||
| font-family: 'Lato', 'Courier New', Courier, monospace; | ||
| min-height: 100%; | ||
| } | ||
|
|
||
| .container { | ||
| text-align: center; | ||
| background-image: linear-gradient(lightgreen 15%, green); | ||
| min-height: 100vh; | ||
| } | ||
|
|
||
| label { | ||
| display: none; | ||
| } | ||
|
|
||
| .svg-section { | ||
| position: relative; | ||
| } | ||
|
|
||
| .ribbon { | ||
| position: absolute; | ||
| top: 0px; | ||
| right: 0px; | ||
| } | ||
|
|
||
| h1 { | ||
| text-align: center; | ||
| letter-spacing: 30px; | ||
| font-size: 3rem; | ||
| margin-top: -10px; | ||
| } | ||
|
|
||
| h3 { | ||
| letter-spacing: 5px; | ||
| font-size: 1.5rem; | ||
| } | ||
|
|
||
| .submit, #LandingEmail { | ||
| height: 10vh; | ||
| width: 300px; | ||
| border-radius: 5px; | ||
| font-family: 'Lato'; | ||
| } | ||
|
|
||
| .form { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| #LandingEmail { | ||
| padding-left: 10px; | ||
| } | ||
|
|
||
| .submit { | ||
| text-transform: uppercase; | ||
| margin: 10px; | ||
| height: 12vh; | ||
| font-size: 1.2rem; | ||
| border: none; | ||
| color: white; | ||
| background: rgb(14, 59, 156); | ||
| } | ||
|
|
||
| .submit:hover { | ||
| box-shadow: darkslategrey 0px 3px 3px 3px; | ||
| } | ||
|
|
||
| .footnote { | ||
| margin-bottom: -15px; | ||
| font-size: 1rem; | ||
| } | ||
|
|
||
| @media only screen and (max-width: 800px) { | ||
| .form { | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| margin-bottom: 70px; | ||
| } | ||
| h1 { | ||
| margin-left: 20px; | ||
| font-size: 2rem; | ||
| letter-spacing: 0px; | ||
| } | ||
| #LandingEmail { | ||
| margin-bottom: 20px; | ||
| } | ||
| h3 { | ||
| font-size: 1rem; | ||
| } | ||
| .footnote { | ||
| font-size: 0.8rem; | ||
| margin-bottom: 0px; | ||
| line-height: 40%; | ||
| } | ||
| .ribbon { | ||
| display: none; | ||
| } | ||
| } | ||
This file contains hidden or 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,41 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
| <link | ||
| href="https://fonts.googleapis.com/css?family=Lato" | ||
| rel="stylesheet" | ||
| /> | ||
| <link rel="stylesheet" type="text/css" href="index.css" /> | ||
| <title>Academy Challenge</title> | ||
| </head> | ||
| <body> | ||
| <div class="container"> | ||
| <div class="svg-section"> | ||
Aszmel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <img | ||
| src="assets/undraw_developer_activity_bv83.svg" | ||
| class="logo" | ||
| width="100%" | ||
| height="auto" | ||
| /> | ||
| <img src="assets/coming-soon-ribbon.png" class="ribbon" alt="ribbon" /> | ||
| </div> | ||
|
|
||
Aszmel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <h1>CODE ACADEMY</h1> | ||
Aszmel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <h3>Leave your email</h3> | ||
Aszmel marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <form class="form"> | ||
| <label for="LandingEmail">Put email here:</label | ||
| ><input type="text" id="LandingEmail" placeholder="example@email.com" /> | ||
| <input type="submit" value="get early access" class="submit" /> | ||
| </form> | ||
| <Footer class="footnote"> | ||
| <p>Aszmel © 2019.</p> | ||
|
|
||
| <p>Made with <span aria-label="love">❤️</span> in Poland.</p> | ||
| <p>We're using cookies to improve your experience.</p> | ||
| </Footer> | ||
| </div> | ||
| </body> | ||
| </html> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.