-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Develop #2727
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
Chalaczi
wants to merge
15
commits into
mate-academy:master
Choose a base branch
from
Chalaczi:develop
base: master
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
Develop #2727
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
3b54e48
first part
Chalaczi e2621a6
button
Chalaczi e7b15c9
address block
Chalaczi 8d26806
chack
Chalaczi efb895b
extract grid mixins
Chalaczi 35165e8
gallery grid
Chalaczi c269ed3
new
Chalaczi 19532d3
burger hover
Chalaczi ae0e38c
BUTTON FINISH
Chalaczi 1c8c3d1
solution
Chalaczi 6edc857
better
Chalaczi 0f54f0f
good job!
Chalaczi c5b81f8
final
Chalaczi 3bc5343
end
Chalaczi 67d5f18
last
Chalaczi 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 |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| /backstop_data | ||
| /dist | ||
| /node_modules |
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,29 @@ | ||
| name: Test | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ master ] | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| node-version: [20.x] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v1 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| - run: npm install | ||
| - run: npm test | ||
| - name: Upload HTML report(backstop data) | ||
| if: ${{ always() }} | ||
| uses: actions/upload-artifact@v2 | ||
| with: | ||
| name: report | ||
| path: backstop_data |
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 |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| # IDE | ||
| .idea | ||
| .vscode | ||
| build | ||
| dist | ||
|
|
||
| # Node | ||
| node_modules | ||
| .DS_Store | ||
|
|
||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| # MacOS | ||
| .DS_Store | ||
|
|
||
| raw_reports | ||
| reports | ||
| cypress/screenshots | ||
| cypress/videos | ||
| # Generated files | ||
| backstop_data | ||
| dist | ||
| .cache | ||
| .parcel-cache |
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 |
|---|---|---|
|
|
@@ -6,7 +6,10 @@ | |
| name="viewport" | ||
| content="width=device-width, initial-scale=1.0" | ||
| /> | ||
| <title>Miami</title> | ||
| <title>Mybike</title> | ||
| <link rel="preconnect" href="https://fonts.googleapis.com"> | ||
| <link rel="preconnect" href="https://fonts.gstatic.com"> | ||
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet"> | ||
| <link | ||
| rel="stylesheet" | ||
| href="src/styles/main.scss" | ||
|
|
@@ -17,6 +20,186 @@ | |
| ></script> | ||
| </head> | ||
| <body> | ||
| <h1>Miami</h1> | ||
| <header class="header" id="home"> | ||
| <nav class="navigation header__navigation"> | ||
| <a href="#" class="logo navigation__logo"> | ||
| <img class="logo__image" src="./src/images/MyBiKE.svg" alt="Logo"> | ||
| </a> | ||
|
|
||
| <div class="navigation__actions"> | ||
| <a class="phone" href="tel:+1 234 555-55-55"><span class="phone__label">+1 234 555-55-55</span><img class="phone_icon" src="./src/images/Icon-Phone-call.svg" alt="#"></a> | ||
| <a href="#menu" class="burger"> | ||
| <span class="burger__text">Open menu</span> | ||
| </a> | ||
| </div> | ||
| </nav> | ||
| <h1 class="title header__title">Take the Streets</h1> | ||
| </header> | ||
|
|
||
| <div class="menu" id="menu"> | ||
| <nav class="navigation navigation__menu"> | ||
| <a href="#home"><img class="logo__image" src="./src/images/MyBiKE blk.svg" alt="3"></a> | ||
| <a href="#home"><img class="close__icon" src="./src/images/X icon.svg" alt="#"></a> | ||
| </nav> | ||
|
|
||
| <nav class="links menu__links"> | ||
| <ul class="links__list"> | ||
| <li class="links__item"><a href="#home" class="links__link">Home</a></li> | ||
| <li class="links__item"><a href="#about-us" class="links__link">About Us</a></li> | ||
| <li class="links__item"><a href="#compare-bikes" class="links__link">Compare Bikes</a></li> | ||
| <li class="links__item"><a href="#details" class="links__link">Details</a></li> | ||
| <li class="links__item"><a href="#contacts" class="links__link">Contacts</a></li> | ||
| </ul> | ||
| </nav> | ||
|
|
||
| <p class="menu__paragraph">+1 234 5555-55-55</p> | ||
| <p class="menu__paragraph"> | ||
| <a href="#" class="menu__link">Book a test ride</a> | ||
| </p> | ||
|
|
||
| </div> | ||
|
|
||
| <main class="main" id="about-us"> | ||
| <h2 class="title title--secondary main__title"> | ||
| Move Free | ||
| </h2> | ||
| <div class="main__content"> | ||
| <p class="main__paragraph">Shift your ride, not gears. Find the fastest way to move in the city as the bike adapts intuitively to power the speed you need. | ||
| </p> | ||
| </div> | ||
| <section class="section main__section" id="compare-bikes"> | ||
| <h3 class="title title--section section__title">Compare bikes</h3> | ||
| <div class="bike"> | ||
| <article class="model bike__model"> | ||
| <img class="model__photo" src="./src/images/Screenshot 2022-01-14 at 11.12 1.png" | ||
| alt="bike1"> | ||
| <h4 class="model__name">Sporty 4</h4> | ||
| <p class="model__description"> | ||
| The iconic frame brought to a new performance height as a sporty, active ride. | ||
| </p> | ||
| <h4 class="model__price"> $ 2 590</h4> | ||
| </article> | ||
|
|
||
| <article class="model bike__model"> | ||
| <img class="model__photo" src="./src/images/Screenshot 2022-01-14 at 11.12 2.png" | ||
| alt="bike2"> | ||
| <h4 class="model__name">Ride in town ST</h4> | ||
| <p class="model__description"> | ||
| An open frame for an upright riding position as the most comfortable ride in town. | ||
| </p> | ||
| <h4 class="model__price"> $ 2 590</h4> | ||
| </article> | ||
|
|
||
| <article class="model bike__model"> | ||
| <img class="model__photo" src="./src/images/Screenshot 2022-01-14 at 11.12 3 (1).jpg" | ||
| alt="bike3"> | ||
| <h4 class="model__name">Agile ride 3</h4> | ||
| <p class="model__description"> | ||
| The lightweight frame that has earned its street tread as a sleek, agile ride. | ||
| </p> | ||
| <h4 class="model__price"> $ 2 090</h4> | ||
| </article> | ||
|
|
||
| </div> | ||
|
|
||
| </section> | ||
|
|
||
| <section class="section main__section" id="details"> | ||
| <h3 class="title title--section section__title">The Details</h3> | ||
| <article class="article section__article"> | ||
| <div class="picturies article__picturies"> | ||
| <div class="picturies__item picturies__item--big"> | ||
| <img src="./src/images/picture-4.jpg" class="picturies__image" | ||
| alt="1"> | ||
| </div> | ||
|
|
||
| <div class="picturies__item picturies__item--small"> | ||
| <img src="./src/images/picture-5.jpg" class="picturies__image" | ||
| alt="2"> | ||
| </div> | ||
| </div> | ||
| <h4 class="article__title">Auto Unlock</h4> | ||
| <p class="article__description"> | ||
| The app senses when you're nearby to unlock automatically. GPS tracking so you know where your bike is and can track it anytime. | ||
| </p> | ||
| </article> | ||
|
|
||
| <article class="article section__article"> | ||
| <div class="picturies article__picturies"> | ||
| <div class="picturies__item picturies__item--big"> | ||
| <img src="./src/images/picture-6.jpg" class="picturies__image" | ||
| alt="1"> | ||
| </div> | ||
|
|
||
| <div class="picturies__item picturies__item--small"> | ||
| <img src="./src/images/picture-7.jpg" class="picturies__image" | ||
| alt="2"> | ||
| </div> | ||
| </div> | ||
| <h4 class="article__title">Range & Integrated lights</h4> | ||
| <p class="article__description"> | ||
| The removable battery has up to 70km battery autonomy and weighs only 2.4 kg. Lights integrated into the frame give you always-on visibility day and night. track it anytime. | ||
| </p> | ||
| </article> | ||
|
|
||
| <article class="article section__article"> | ||
| <div class="picturies article__picturies"> | ||
| <div class="picturies__item picturies__item--small"> | ||
| <img src="./src/images/picture-8.jpg" class="picturies__image" | ||
| alt="1"> | ||
| </div> | ||
|
|
||
| <div class="picturies__item picturies__item--big"> | ||
| <img src="./src/images/picture-9.jpg" class="picturies__image" | ||
| alt="2"> | ||
| </div> | ||
| </div> | ||
| <h4 class="article__title">Hydraulic disc brakes & Lightweight</h4> | ||
| <p class="article__description"> | ||
| Brakes with total stopping power the second you make contact. The removable battery has up to 70km battery autonomy and weighs only 2.4 kg. Lights integrated into the frame give you always-on visibility day and night. track it anytime. | ||
| </p> | ||
| </article> | ||
| <a href="#" class="button">Explore</a> | ||
| </section> | ||
|
|
||
| <section class="section main__section" id="contacts"> | ||
| <h3 class="title title--section section__title">Contact us</h3> | ||
| <div class="contact"> | ||
| <form class="form contact__form"> | ||
| <div class="form__item"> | ||
| <label for="name" class="form__label">Name</label> | ||
| <input id="name" class="form__imput" | ||
| type="text" placeholder="Name"> | ||
| </div> | ||
| <div class="form__item"> | ||
| <label for="email" class="form__label">Email</label> | ||
| <input id="email" class="form__imput" | ||
| type="email" placeholder="Email"> | ||
| </div> | ||
| <div class="form__item"> | ||
| <label for="message" class="form__label">Message</label> | ||
| <textarea id="message" class="form__textarea" | ||
| placeholder="Message"></textarea> | ||
| </div> | ||
| <button class="button button--primary">Send</button> | ||
| </form> | ||
| <address class="address contact__address"> | ||
| <h4 class="address__label">Phone</h4> | ||
| <p class="address__content">+1 234 5555-55-55</p> | ||
| <h4 class="address__label">Email</h4> | ||
| <p class="address__content">[email protected]</p> | ||
| <h4 class="address__label">Address</h4> | ||
| <p class="address__content"> | ||
| 400 first ave. | ||
| <br> | ||
| suite 700 | ||
| <br> | ||
| Minneapolis, MN 55401 | ||
| </p> | ||
| </address> | ||
| </div> | ||
| </section> | ||
| </main> | ||
| <footer class="footer"></footer> | ||
| </body> | ||
| </html> | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to img ci poszerzało layout bo nie ustawiłeś mu konkretnej szerokości. możesz usunąć img bo i tak dodajesz ten obraz jako background image a footer lepiej mieć poza kontenerem main aby na background image nie wpływał padding