From 4e15d752632f86057f30106e68ac22169a1e7fdb Mon Sep 17 00:00:00 2001 From: lesiaturuta Date: Wed, 18 Oct 2023 23:40:36 +0300 Subject: [PATCH 1/2] add homework 1 --- .../PokemonProject/index.html | 35 +++++++++++++++++++ .../PokemonProject/style.css | 27 ++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 homeworks/lesia.turua_lesiaturuta/PokemonProject/index.html create mode 100644 homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css diff --git a/homeworks/lesia.turua_lesiaturuta/PokemonProject/index.html b/homeworks/lesia.turua_lesiaturuta/PokemonProject/index.html new file mode 100644 index 00000000..a02061a5 --- /dev/null +++ b/homeworks/lesia.turua_lesiaturuta/PokemonProject/index.html @@ -0,0 +1,35 @@ + + + + + + + + PokemonProject + + + + + + + +
+
+

About me

+

Hi! My name is [Text] 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 [Links to Socials Nets] and/or check out my GitHub.

+
+
+ + + \ No newline at end of file diff --git a/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css b/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css new file mode 100644 index 00000000..64c70a5b --- /dev/null +++ b/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css @@ -0,0 +1,27 @@ +* { + margin: 0; + padding: 0; +} + +body { + font-family: "Roboto", sans-serif; + color: #221F1F; +} + +.info { + max-width: 575px; +} + +.description { + font-size: 48px; + font-weight: 700; +} + +.text { + font-size: 22px; + font-weight: 400; +} + +.link--red { + color: #EF4934; +} From b5006c7cefd0c55ea0ff2249a8f72b8f9fe53230 Mon Sep 17 00:00:00 2001 From: lesiaturuta Date: Fri, 20 Oct 2023 21:39:43 +0300 Subject: [PATCH 2/2] fix style.css add line-height for text and discription and add margin top fot text --- homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css b/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css index 64c70a5b..b49f6361 100644 --- a/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css +++ b/homeworks/lesia.turua_lesiaturuta/PokemonProject/style.css @@ -15,11 +15,14 @@ body { .description { font-size: 48px; font-weight: 700; + line-height: 32px; } .text { font-size: 22px; font-weight: 400; + margin-top: 28px; + line-height: 32px; } .link--red {