Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalyChy authored Nov 27, 2023
0 parents commit a509aae
Show file tree
Hide file tree
Showing 18 changed files with 117 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Tests

on:
push:
branches:
- '**'
tags:
- '**'


jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up GitHub Actions
uses: actions/checkout@v3
- name: Use Node.js 14.x
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Check if the repository is private
run: exit 1
if: ${{github.event.repository.private}}
- name: Get testing lib
run: set -eu && git clone --branch main --single-branch --depth 1 https://github.com/Yandex-Practicum/tests-selfmade-project-2-public.git
- name: Run the tests
run: bash tests-selfmade-project-2-public/run.sh
- name: Upload layout-compare
uses: actions/upload-artifact@v3
with:
name: layout-compare
path: tests-selfmade-project-2-public/output.jpg
- name: Show test results
run: bash tests-selfmade-project-2-public/result.sh
Binary file added fonts/Raleway-Bold.woff
Binary file not shown.
Binary file added fonts/Raleway-Bold.woff2
Binary file not shown.
Binary file added fonts/Raleway-Regular.woff
Binary file not shown.
Binary file added fonts/Raleway-Regular.woff2
Binary file not shown.
17 changes: 17 additions & 0 deletions fonts/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@font-face {
font-family: Raleway;
src:
url(./Raleway-Regular.woff2) format('woff2'),
url(./Raleway-Regular.woff) format('woff');
font-weight: normal;
font-display: swap;
}

@font-face {
font-family: Raleway;
src:
url(./Raleway-Bold.woff2) format('woff2'),
url(./Raleway-Bold.woff) format('woff');
font-weight: bold;
font-display: swap;
}
Binary file added images/card-lot-01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/card-lot-02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/card-lot-03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions images/logo-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions images/logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions images/pinterest.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions images/vk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions images/yt.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Оно тебе надо — аукцион вещей, в которые никто не верил</title>
</head>
<body></body>
</html>
34 changes: 34 additions & 0 deletions styles/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
*,
*::before,
*::after {
box-sizing: border-box;
}

body {
min-width: 1100px;
margin: 0;
font-family: Raleway, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
blockquote {
margin: 0;
padding: 0;
}

a {
color: inherit;
}

img {
width: 100%;
}
1 change: 1 addition & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* место для вашего кода */

0 comments on commit a509aae

Please sign in to comment.