From 410db08026c960d9bd2769c18fb47dbe8e38905a Mon Sep 17 00:00:00 2001 From: Andrii Morozov Date: Tue, 17 Oct 2023 21:26:36 +0300 Subject: [PATCH 1/5] added index.html & styles.css --- .../GamesProject/index.html | 11 +++++++++++ .../GamesProject/styles.css | 0 2 files changed, 11 insertions(+) create mode 100644 homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html create mode 100644 homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html new file mode 100644 index 00000000..69763a71 --- /dev/null +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css new file mode 100644 index 00000000..e69de29b From ecafb7f713a08d3982cd5628334829bb53936c15 Mon Sep 17 00:00:00 2001 From: Andrii Morozov Date: Tue, 17 Oct 2023 23:48:19 +0300 Subject: [PATCH 2/5] added main and styles for main --- .../GamesProject/index.html | 11 ++++++-- .../GamesProject/styles.css | 26 +++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html index 69763a71..9477c376 100644 --- a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html @@ -3,9 +3,16 @@ - Document + About Me + - +
+

About Me

+

Hi! My name is Andrii Morozov and I'm a Junior Frontend Developer. I am already familiar with main Web Technologies like HTML, CSS, JavaScript and Git version control system.

+

This page was developed during the course 'Frontend for beginners' from Masters Academy in 2023.

+

This is a social project from MOCG company where I got an opportunity to work with Frontend mentors and to create my own small project for the portfolio.

+

You can contact me via facebook and/or check out my GitHub.

+
\ No newline at end of file diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css index e69de29b..0451f587 100644 --- a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css @@ -0,0 +1,26 @@ +* { + box-sizing: border-box; +} + +.main { + width: 575px; + border: 2px #F00 solid; + padding-left: 20px; + font-size: 20px; +} + +.main__paragraf { + margin-bottom: 20px; +} + +.link { + text-decoration: none; +} + +.link--red { + color: #F00; +} + +.link--blue { + color: #00F; +} \ No newline at end of file From d4470a761b31756b0ec6ef5480375715e300b4ae Mon Sep 17 00:00:00 2001 From: Andrii Morozov Date: Wed, 18 Oct 2023 11:31:16 +0300 Subject: [PATCH 3/5] added font styles --- .../GamesProject/index.html | 6 +++--- .../GamesProject/styles.css | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html index 9477c376..c964e89d 100644 --- a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/index.html @@ -8,11 +8,11 @@
-

About Me

+

About Me

Hi! My name is Andrii Morozov and I'm a Junior Frontend Developer. I am already familiar with main Web Technologies like HTML, CSS, JavaScript and Git version control system.

-

This page was developed during the course 'Frontend for beginners' from Masters Academy in 2023.

+

This page was developed during the course 'Frontend for beginners' from Masters Academy in 2023.

This is a social project from MOCG company where I got an opportunity to work with Frontend mentors and to create my own small project for the portfolio.

-

You can contact me via facebook and/or check out my GitHub.

+

You can contact me via facebook and/or check out my GitHub.

\ No newline at end of file diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css index 0451f587..924a95a1 100644 --- a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css @@ -4,23 +4,23 @@ .main { width: 575px; - border: 2px #F00 solid; padding-left: 20px; font-size: 20px; } -.main__paragraf { - margin-bottom: 20px; +.main__heading--h1 { + font-size: 48px; + font-weight: 700; + line-height: 32px; } -.link { - text-decoration: none; +.main__paragraf { + margin-bottom: 20px; + font-size: 22px; + font-weight: 400; + line-height: 32px; } .link--red { color: #F00; } - -.link--blue { - color: #00F; -} \ No newline at end of file From 4e95a5e200a198d847e07176e857fd5b1c0ef334 Mon Sep 17 00:00:00 2001 From: Andrii Morozov Date: Wed, 18 Oct 2023 11:41:58 +0300 Subject: [PATCH 4/5] changed colors --- .../andrii.morozov_AndriiMorozov88/GamesProject/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css index 924a95a1..138da03b 100644 --- a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css @@ -5,7 +5,7 @@ .main { width: 575px; padding-left: 20px; - font-size: 20px; + color: #221F1F; } .main__heading--h1 { @@ -22,5 +22,5 @@ } .link--red { - color: #F00; + color: #EF4934; } From 5fbc859da7ccf3e727e56ac04336075d8836090d Mon Sep 17 00:00:00 2001 From: Andrii Morozov Date: Wed, 18 Oct 2023 11:45:14 +0300 Subject: [PATCH 5/5] replace line-height --- .../andrii.morozov_AndriiMorozov88/GamesProject/styles.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css index 138da03b..fe456be2 100644 --- a/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css +++ b/homeworks/andrii.morozov_AndriiMorozov88/GamesProject/styles.css @@ -6,19 +6,18 @@ width: 575px; padding-left: 20px; color: #221F1F; + line-height: 32px; } .main__heading--h1 { font-size: 48px; font-weight: 700; - line-height: 32px; } .main__paragraf { margin-bottom: 20px; font-size: 22px; font-weight: 400; - line-height: 32px; } .link--red {