Skip to content

Commit 6186064

Browse files
committed
update README.md, fix table of contents links, change background images and logo styles, fix reinstall chapter inaccuracy
1 parent 70f9493 commit 6186064

File tree

4 files changed

+46
-33
lines changed

4 files changed

+46
-33
lines changed

README.md

Lines changed: 46 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,47 @@
11
<!-- Hexlet logo -->
22
<a id="anchor-top"></a>
33
<div align="center"
4-
style="display: flex; flex-wrap: wrap; flex: 1; flex-direction: column; margin: 0">
4+
style="display: flex; flex: 1;
5+
flex-wrap: wrap; flex-direction: column;
6+
margin: 0; margin-bottom: 25px">
57
<a href="https://ru.hexlet.io/" style="color: black">
68
<img src="images/hexlet_logo_full.svg"
79
alt="Logo"
8-
width="170" height="60"
10+
width="210" height="60"
911
style="display: flex; flex-wrap: wrap; margin: 6px">
1012
</a>
11-
<p style="display: flex; flex-wrap: wrap; flex: 1; justify-content: center; margin: 0">hands-on programming courses</p>
13+
<p style="display: flex; flex: 1;
14+
flex-wrap: wrap; justify-content: center;
15+
margin: 0; color: #1100A0;
16+
font-weight: 500; letter-spacing: 1px;">hands-on programming courses</p>
1217
</div>
1318

14-
### Hexlet tests and linter status:
15-
[![Actions Status](https://github.com/bazarovstas/python-project-49/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/bazarovstas/python-project-49/actions)
16-
[![Maintainability](https://api.codeclimate.com/v1/badges/5d6e3363a9f1e31f303f/maintainability)](https://codeclimate.com/github/bazarovstas/python-project-49/maintainability)
19+
<!-- Hexlet header -->
20+
<a href="https://ru.hexlet.io/" style="color: black">
21+
<img src="images/hexlet_background.jpg"
22+
alt="Hexlet header image"
23+
width="auto" height="auto"
24+
style="display: flex; flex-wrap: wrap; border-radius: 50%">
25+
</a>
1726

1827

19-
<!-- Main page -->
20-
[![Hexlet-Project][project-image]](https://ru.hexlet.io/)
28+
### Hexlet tests, linter and Code Climate status:
29+
[![Actions Status](https://github.com/bazarovstas/python-project-49/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/bazarovstas/python-project-49/actions)
30+
[![Maintainability](https://api.codeclimate.com/v1/badges/5d6e3363a9f1e31f303f/maintainability)](https://codeclimate.com/github/bazarovstas/python-project-49/maintainability)
2131

2232

33+
<!-- Main page -->
2334
## Table of contents
24-
**[The Brain Games](#the-brain-games)**
25-
**[The Even Game](#the-brain-even)**
26-
**[The Calc Game](#the-calc-game)**
27-
**[The GCD Game](#the-gcd-game)**
28-
**[The Progressive Game](#the-progressive-game)**
29-
**[The Prime Game](#the-prime-game)**
30-
**[Tech Stack](#tech-stack)**
31-
**[Installation](#installation)**
32-
**[Usage](#usage)**
33-
**[Reinstall](#reinstall)**
35+
**[1. The Brain Games](#the-brain-games)**
36+
**[- 1.1 Even Game](#even-game)**
37+
**[- 1.2 Calc Game](#calc-game)**
38+
**[- 1.3 GCD Game](#gcd-game)**
39+
**[- 1.4 Progressive Game](#progressive-game)**
40+
**[- 1.5 Prime Game](#prime-game)**
41+
**[2. Tech Stack](#tech-stack)**
42+
**[3. Installation](#installation)**
43+
**[4. Usage](#usage)**
44+
**[5. Reinstall](#reinstall)**
3445

3546

3647
# The Brain Games
@@ -46,31 +57,31 @@ Brain Games is a set of 5 logic puzzles that let you test how smart you are:
4657

4758
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
4859

49-
## The Even Game
60+
## Even Game
5061
This demo of the even game shows the game process:
5162
[![asciicast](https://asciinema.org/a/687407.svg)](https://asciinema.org/a/687407)
5263

5364
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
5465

55-
## The Calc Game
66+
## Calc Game
5667
This demo of the calc game shows the game process:
5768
[![asciicast](https://asciinema.org/a/687410.svg)](https://asciinema.org/a/687410)
5869

5970
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
6071

61-
## The GCD Game
72+
## GCD Game
6273
This demo of the gcd game shows the game process:
6374
[![asciicast](https://asciinema.org/a/687411.svg)](https://asciinema.org/a/687411)
6475

6576
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
6677

67-
## The Progressive Game
78+
## Progressive Game
6879
This demo of the progressive game shows the game process:
6980
[![asciicast](https://asciinema.org/a/687412.svg)](https://asciinema.org/a/687412)
7081

7182
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
7283

73-
## The Prime Game
84+
## Prime Game
7485
This demo of the prime game shows the game process:
7586
[![asciicast](https://asciinema.org/a/687413.svg)](https://asciinema.org/a/687413)
7687

@@ -85,6 +96,7 @@ This demo of the prime game shows the game process:
8596

8697
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
8798

99+
88100
## Installation
89101
The installation is simple and does not take much time
90102

@@ -133,6 +145,7 @@ and finnaly, enter the following command in the CLI:
133145

134146
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
135147

148+
136149
## Usage
137150
you can use scripts from the Makefile by installing the package, or use poetry scripts without installing anything:
138151
* Poetry:
@@ -160,24 +173,24 @@ generate a distributive and install them:
160173

161174
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
162175

176+
163177
## Reinstall
164178
to reinstall the package, use the following command:
165179
```
166-
package-reinstall
180+
make package-reinstall
167181
```
168182

169183
<p align="right">[<a href="#anchor-top" style="color: black">BACK TO TOP</a>]</p>
170184

185+
<!-- Hexlet footer -->
171186
<div align="center"
172-
style="display: flex; flex-wrap: wrap; flex: 1; flex-direction: column; margin: 0">
187+
style="display: flex; flex: 1;
188+
flex-wrap: wrap; flex-direction: column;
189+
margin: 0; margin-top: 20px;">
173190
<a href="https://ru.hexlet.io/" style="color: black">
174-
<img src="images/hexlet_logo.png"
175-
alt="Logo"
176-
width="110" height="110"
177-
style="display: flex; flex: 1; flex-wrap: wrap; justify-content: right;">
191+
<img src="images/hexlet_background.png"
192+
alt="Hexlet footer image"
193+
width="auto" height="auto"
194+
style="display: flex; flex-wrap: wrap; border-radius: 25%">
178195
</a>
179196
</div>
180-
181-
182-
<!-- Markdown images -->
183-
[project-image]: images/project_image.png

images/hexlet_background.jpg

56.3 KB
Loading

images/hexlet_background.png

54.7 KB
Loading

images/project_image.png

-62.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)