diff --git a/ИП2/css/index-style.css b/ИП2/css/index-style.css new file mode 100644 index 0000000..c19a412 --- /dev/null +++ b/ИП2/css/index-style.css @@ -0,0 +1,188 @@ +body { + color: #c5c6c7; + background-color: #0b0c10; + margin: 0px; + } + + +/* Шапка */ +.header { + display: flex; + justify-content: space-between; + border-bottom: 3px solid #BF1723; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; +} + +.left-part{ + display: flex; + margin-left: 30px; +} + +.header > .left-part > img { + width: 50px; +} + +.header > .left-part > div { + display: flex; + align-items: center; +} + +.first-part { + color:#FCD116; + font-size: 1.4em; + margin-left: 20px; +} + +.last-part { + color: #BF1723; + font-size: 1.5em; +} + + +.right-part{ + margin-right: 30px; +} + +.header > .right-part > nav > ul { + display: flex; + list-style: none; +} + +.header > .right-part > nav > ul > li > a { + display: block; + margin-right: 10px; + padding: 10px; + border: 0.5px solid #FFF; + border-radius: 10px; +} + + +/* Блок регистрации */ +.login-div { + display: flex; + justify-content: center; + align-items: center; + min-height: 75vh; +} + +.login-page { + width: 19%; + background-color: #222222; + padding: 1%; + border-radius: 15%; + border: 0.5px solid #BF1723; + color: #FFF; +} + +h1{ + text-align: center; +} + +.input-box { + margin: 10px 0; +} + +.input-div { + display: flex; + flex-direction: column; + align-items: center; +} + +.remember-forgot { + display: flex; + justify-content: space-between; + margin-bottom: 10px; + padding: 0 10px; +} + +.remember-forgot label input { + accent-color: #BF1723; +} + +.login-page .btn { + width: 100%; + background-color: #BF1723; + border-radius: 10px; + color: #fff; +} + +.register-link{ + display: flex; + justify-content: space-between; + align-items: center; +} + + + +/* Ссылки */ +a { + outline: none; + text-decoration: none; +} +a:link{ + color: #FCD116; +} +a:visited{ + color: #FCD116; +} +a:hover{ + color: #c5c6c7; +} + + +@media (max-width: 600px){ + .header { + justify-content: center; + } + + .header > .right-part { + display: none; + } + + .header > .left-part { + margin: 0; + } + + .login-page { + width: 77%; + } + + .register-link { + justify-content: space-evenly; + } +} + +@media (min-width: 601px) and (max-width: 800px){ + + .login-page { + width: 37%; + } + + .register-link { + justify-content: space-evenly; + } +} + +@media (min-width: 801px) and (max-width: 1024px){ + + .login-page { + width: 30%; + } + + .register-link { + justify-content: space-evenly; + } +} + +@media (min-width: 1025px) and (max-width: 1920px){ + + .login-page { + width: 22%; + } + + .register-link { + justify-content: space-evenly; + } +} + diff --git a/ИП2/css/lenta-style.css b/ИП2/css/lenta-style.css new file mode 100644 index 0000000..db0070c --- /dev/null +++ b/ИП2/css/lenta-style.css @@ -0,0 +1,280 @@ +body { + color: #c5c6c7; + background-color: #141414; + margin: 0px; + } + +a:link { + color: white; + text-decoration: none; +} +a:visited { + color: white; +} +a:hover { + color: #BF1723; + background-color: #2a2a2a; +} +a:active { + color: #FCD116; +} +img { + width: 50px; +} +li { + list-style: none; +} + +/* Шапка */ +.header { + display: flex; + justify-content: space-between; + border-bottom: 3px solid #BF1723; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; + padding: 0.25% 33% 0% 33%; +} + +.rightpart > img { + border-radius: 25px; +} + + +/* Основная страница */ +.page { + display: flex; + justify-content: center; + margin-top: 15px; +} + + + +.leftbar { + height: 100%; + width: 10%; + background-color: #222222; + border-radius: 15px; + margin: 5px; + + display: flex; + flex-direction: column; + + min-width: 120px; +} + +.leftbar-content { + display: flex; + flex-direction: column; + margin: 10px 10px 5px 10px; +} + +.leftbar-content > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + +.leftbar-settings { + display: flex; + flex-direction: column; + border-top: 1px solid rgba(128, 128, 128, 0.479); + margin: 10px 10px 0px 10px; + padding-top: 5px; +} + +.leftbar-settings > a{ + padding: 3px; + border-radius: 5px; +} + +.footer { + position: relative; + border-top: 1px solid rgba(128, 128, 128, 0.479); + margin: 10px; + padding-top: 5px; +} + +.footer > span { + z-index: 1; + position: relative; + cursor: pointer; + color: white; +} + +span:hover { + color: #BF1723; +} + +.footer:hover .footer-menu { + display: flex; + flex-direction: column; + top: 150%; + left: -8%; + + width: 100%; + + position: absolute; + + background-color: #222222; + border-radius: 10px; + + padding: 10px; +} + +.footer-menu { + display: none; +} + +.footer-menu > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + + + + +.content { + height: 100%; + width: 25%; + background-color: #222222; + border-radius: 15px; + border: 0.1px solid #BF1723; + margin: 5px; + padding: 10px; + + min-width: 250px; +} + +.post { + margin-bottom: 15px; +} + +.post-header { + margin-bottom: 10px; + color: #fff; +} + +.image { + position: relative; + width: 98%; + padding: 3px; + margin-bottom: 10px; +} + +.image .post-img { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 2%; +} + +.post-footer { + color: #fff; + border-bottom: 0.5px solid #BF1723; + padding: 5px; +} + +.post-footer > i { + margin-right: 10px; +} + + + + +.rightbar { + height: 100%; + width: 10%; + background-color: #222222; + border-radius: 15px; + margin: 5px; + + min-width: 150px; +} + +.rightbar-content { + display: flex; + flex-direction: column; + margin: 10px; +} + +.rightbar-content > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + + + +.bottombar{ + display: flex; + position: fixed; + bottom: 0; + width: 100%; + justify-content: space-between; + border-top: 3px solid #BF1723; + border-top-right-radius: 25px; + border-top-left-radius: 25px; + padding: 5px 0px; + justify-content: space-evenly; +} + +.bottombar { + display: none; +} + +.bottombar > a > img { + width: 25px; +} + + + +@media (max-width: 600px){ + .header { + justify-content: center; + } + + .header > .rightpart { + display: none; + } + + .header > .leftpart { + margin: 0; + } + + + .leftbar { + display: none; + } + + .rightbar{ + display: none; + } + + .bottombar { + display: flex; + background-color: #222222; + } + + .content { + height: 100%; + } + + + .page { + margin-bottom: 45px; + } +} + +/*Tablets*/ +@media (min-width: 601px) and (max-width: 800px){ + .header { + padding: 0.25% 25% 0% 20%; + } +} + +@media (min-width: 801px) and (max-width: 1024px){ + .header { + padding: 0.25% 31% 0% 28%; + } +} \ No newline at end of file diff --git a/ИП2/css/message-style.css b/ИП2/css/message-style.css new file mode 100644 index 0000000..5fbc2e6 --- /dev/null +++ b/ИП2/css/message-style.css @@ -0,0 +1,267 @@ +body { + color: #c5c6c7; + background-color: #141414; + margin: 0px; + } + +a:link { + color: white; + text-decoration: none; +} +a:visited { + color: white; +} +a:hover { + color: #BF1723; + background-color: #2a2a2a; +} +a:active { + color: #FCD116; +} +img { + width: 50px; +} +li { + list-style: none; +} + +/* Шапка */ +.header { + display: flex; + justify-content: space-between; + border-bottom: 3px solid #BF1723; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; + padding: 0.25% 33% 0% 33%; +} + +.rightpart > img { + border-radius: 25px; +} + + +/* Основная страница */ +.page { + display: flex; + justify-content: center; + margin-top: 15px; +} + + + +.leftbar { + height: 100%; + width: 10%; + background-color: #222222; + border-radius: 15px; + margin: 5px; + + display: flex; + flex-direction: column; + + min-width: 120px; +} + +.leftbar-content { + display: flex; + flex-direction: column; + margin: 10px 10px 5px 10px; +} + +.leftbar-content > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + +.leftbar-settings { + display: flex; + flex-direction: column; + border-top: 1px solid rgba(128, 128, 128, 0.479); + margin: 10px 10px 0px 10px; + padding-top: 5px; +} + +.leftbar-settings > a{ + padding: 3px; + border-radius: 5px; +} + +.footer { + position: relative; + border-top: 1px solid rgba(128, 128, 128, 0.479); + margin: 10px; + padding-top: 5px; +} + +.footer > span { + z-index: 1; + position: relative; + cursor: pointer; + color: white; +} + +span:hover { + color: #BF1723; +} + +.footer:hover .footer-menu { + display: flex; + flex-direction: column; + top: 150%; + left: -8%; + + width: 100%; + + position: absolute; + + background-color: #222222; + border-radius: 10px; + + padding: 10px; +} + +.footer-menu { + display: none; +} + +.footer-menu > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + + + + +.content { + height: 100%; + width: 25%; + background-color: #222222; + border-radius: 15px; + border: 0.1px solid #BF1723; + margin: 5px; + padding: 10px; + + min-width: 250px; +} + +.chat { + display: flex; + align-items: center; + margin-bottom: 10px; + padding-bottom: 10px; + border-bottom: 0.5px solid rgba(128, 128, 128, 0.479); +} + +.chat > .avatar > img { + border-radius: 25px; +} + +.chat-content { + margin-left: 10px; +} + +.username { + margin: 0; + color: white; +} + +.message { + margin: 0; + color: rgb(158, 158, 158); +} + + + + +.rightbar { + height: 100%; + width: 10%; + background-color: #222222; + border-radius: 15px; + margin: 5px; + + min-width: 150px; +} + +.rightbar-content { + display: flex; + flex-direction: column; + margin: 10px; +} + +.rightbar-content > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + + + +.bottombar{ + display: flex; + position: fixed; + bottom: 0; + width: 100%; + justify-content: space-between; + border-top: 3px solid #BF1723; + border-top-right-radius: 25px; + border-top-left-radius: 25px; + padding: 5px 0px; + justify-content: space-evenly; +} + +.bottombar { + display: none; +} + +.bottombar > a > img { + width: 25px; +} + + + +@media (max-width: 600px){ + .header { + justify-content: center; + } + + .header > .rightpart { + display: none; + } + + .header > .leftpart { + margin: 0; + } + + + .leftbar { + display: none; + } + + .rightbar{ + display: none; + } + + .bottombar { + display: flex; + background-color: #222222; + } + + .content { + height: 100%; + } +} + +@media (min-width: 601px) and (max-width: 800px){ + .header { + padding: 0.25% 25% 0% 20%; + } +} + +@media (min-width: 801px) and (max-width: 1024px){ + .header { + padding: 0.25% 31% 0% 28%; + } +} \ No newline at end of file diff --git a/ИП2/css/profile-style.css b/ИП2/css/profile-style.css new file mode 100644 index 0000000..3968ca1 --- /dev/null +++ b/ИП2/css/profile-style.css @@ -0,0 +1,285 @@ + * { + box-sizing: border-box; + } + +body { + color: #c5c6c7; + background-color: #141414; + margin: 0px; + } + +a:link { + color: white; + text-decoration: none; +} +a:visited { + color: white; +} +a:hover { + color: #BF1723; + background-color: #2a2a2a; +} +a:active { + color: #FCD116; +} +img { + width: 50px; +} +li { + list-style: none; +} + +/* Шапка */ +.header { + display: flex; + justify-content: space-between; + border-bottom: 3px solid #BF1723; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; + padding: 0.25% 33% 0% 33%; +} + +.rightpart > img { + border-radius: 25px; +} + + +/* Основная страница */ +.page { + display: flex; + justify-content: center; + margin-top: 15px; +} + + + +.leftbar { + height: 100%; + width: 10%; + background-color: #222222; + border-radius: 15px; + margin: 5px; + + display: flex; + flex-direction: column; + + min-width: 120px; +} + +.leftbar-content { + display: flex; + flex-direction: column; + margin: 10px 10px 5px 10px; +} + +.leftbar-content > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + +.leftbar-settings { + display: flex; + flex-direction: column; + border-top: 1px solid rgba(128, 128, 128, 0.479); + margin: 10px 10px 0px 10px; + padding-top: 5px; +} + +.leftbar-settings > a{ + padding: 3px; + border-radius: 5px; +} + +.footer { + position: relative; + border-top: 1px solid rgba(128, 128, 128, 0.479); + margin: 10px; + padding-top: 5px; +} + +.footer > span { + z-index: 1; + position: relative; + cursor: pointer; + color: white; +} + +span:hover { + color: #BF1723; +} + +.footer:hover .footer-menu { + display: flex; + flex-direction: column; + top: 150%; + left: -8%; + + width: 115%; + + position: absolute; + + background-color: #222222; + border-radius: 10px; + + padding: 10px; +} + +.footer-menu { + display: none; +} + +.footer-menu > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + + + +.profile-card { + display: flex; + flex-direction: column; + align-items: center; + max-width: 250px; + width: 100%; + background-color: #222222; + border-radius: 25px; + padding: 25px; +} + +.image { + position: relative; + width: 150px; + height: 150px; + border-radius: 50%; + background-color: #FCD116; + padding: 3px; + margin-bottom: 10px; +} + +.image .profile-img { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 50%; + border: 3px solid #FFF; +} + +.profile-card .text-data { + display: flex; + flex-direction: column; + align-items: center; +} + +.text-data .name { + font-size: 22px; + font-weight: 500; + color: #fff; +} + +.text-data .about { + font-size: 15px; + font-weight: 400; + color: #fff; + margin-bottom: 10px; +} + +.profile-card .more-info { + width: 90%; + display: flex; + justify-content: space-between; +} + + + + +.rightbar { + height: 100%; + width: 10%; + background-color: #222222; + border-radius: 15px; + margin: 5px; + + min-width: 150px; +} + +.rightbar-content { + display: flex; + flex-direction: column; + margin: 10px; +} + +.rightbar-content > a { + margin-bottom: 5px; + padding: 3px; + border-radius: 5px; +} + + + +.bottombar{ + display: flex; + position: fixed; + bottom: 0; + width: 100%; + justify-content: space-between; + border-top: 3px solid #BF1723; + border-top-right-radius: 25px; + border-top-left-radius: 25px; + padding: 5px 0px; + justify-content: space-evenly; +} + +.bottombar { + display: none; +} + +.bottombar > a > img { + width: 25px; +} + + + +@media (max-width: 600px){ + .header { + justify-content: center; + } + + .header > .rightpart { + display: none; + } + + .header > .leftpart { + margin: 0; + } + + + .leftbar { + display: none; + } + + .rightbar{ + display: none; + } + + .bottombar { + display: flex; + } + + .content { + height: 500px; + } +} + +@media (min-width: 601px) and (max-width: 800px){ + .header { + padding: 0.25% 25% 0% 20%; + } +} + +@media (min-width: 801px) and (max-width: 1024px){ + .header { + padding: 0.25% 31% 0% 28%; + } +} \ No newline at end of file diff --git a/ИП2/css/signup-style.css b/ИП2/css/signup-style.css new file mode 100644 index 0000000..b07e209 --- /dev/null +++ b/ИП2/css/signup-style.css @@ -0,0 +1,181 @@ +body { + color: #c5c6c7; + background-color: #0b0c10; + margin: 0px; + } + + +/* Шапка */ +.header { + display: flex; + justify-content: space-between; + border-bottom: 3px solid #BF1723; + border-bottom-right-radius: 25px; + border-bottom-left-radius: 25px; +} + +.left-part{ + display: flex; + margin-left: 30px; +} + +.header > .left-part > img { + width: 50px; +} + +.header > .left-part > div { + display: flex; + align-items: center; +} + +.first-part { + color:#FCD116; + font-size: 1.4em; + margin-left: 20px; +} + +.last-part { + color: #BF1723; + font-size: 1.5em; +} + + +.right-part{ + margin-right: 30px; +} + +.header > .right-part > nav > ul { + display: flex; + list-style: none; +} + +.header > .right-part > nav > ul > li > a { + display: block; + margin-right: 10px; + padding: 10px; + border: 0.5px solid #FFF; + border-radius: 10px; +} + + +/* Блок регистрации */ +.login-div { + display: flex; + justify-content: center; + align-items: center; + min-height: 75vh; +} + +.login-page { + width: 19%; + background-color: #222222; + padding: 1%; + border-radius: 15%; + border: 0.5px solid #BF1723; + color: #FFF; +} + +h1{ + text-align: center; +} + +.input-box { + margin: 10px 0; +} + +.input-div { + display: flex; + flex-direction: column; + align-items: center; + margin-bottom: 5px; +} + +.remember-forgot { + display: flex; + justify-content: space-between; + margin-bottom: 10px; + padding: 0 10px; +} + +.remember-forgot label input { + accent-color: #BF1723; +} + +.login-page .btn { + width: 100%; + background-color: #BF1723; + border-radius: 10px; + color: #fff; +} + +.register-link{ + display: flex; + justify-content: space-between; + align-items: center; +} + +.register-link > a { + margin-right: 50px; +} + + + +/* Ссылки */ +a { + outline: none; + text-decoration: none; +} +a:link{ + color: #FCD116; +} +a:visited{ + color: #FCD116; +} +a:hover{ + color: #c5c6c7; +} + +@media (max-width: 600px){ + .header { + justify-content: center; + } + + .header > .right-part { + display: none; + } + + .header > .left-part { + margin: 0; + } + + .login-page { + width: 77%; + } + + .register-link { + justify-content: space-evenly; + } +} + +@media (min-width: 601px) and (max-width: 800px){ + + .login-page { + width: 37%; + } + + .register-link { + justify-content: space-evenly; + } +} + +@media (min-width: 801px) and (max-width: 1024px){ + + .login-page { + width: 30%; + } + + .register-link { + justify-content: space-evenly; + } +} + diff --git a/ИП2/index.html b/ИП2/index.html new file mode 100644 index 0000000..93316f2 --- /dev/null +++ b/ИП2/index.html @@ -0,0 +1,62 @@ + + + + + + СОЦИАЛьная сеть + + + + +
+
+ +
+

СОЦИАЛ

+

ьная сеть

+
+
+ +
+ +
+
+ +
+
+
+

Авторизация

+ +
+
+ + +
+
+ + +
+
+ + +
+ + Забыли пароль? +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/ИП2/lenta.html b/ИП2/lenta.html new file mode 100644 index 0000000..3e84d47 --- /dev/null +++ b/ИП2/lenta.html @@ -0,0 +1,136 @@ + + + + + + Лента новостей + + + + +
+ + + + + + + +
+ +
+
+ + + + + + +
+ +
+
+
+ + +
+
+ +
+ +
+
+
+ + +
+
+ +
+ +
+
+
+ + +
+
+ +
+ +
+
+
+ + +
+
+ + +
+ +
+
+
+ + +
+
+ +
+ +
+
+ +
+ +
+
+ + +
+ + + + +
+ + \ No newline at end of file diff --git a/ИП2/messages.html b/ИП2/messages.html new file mode 100644 index 0000000..f176eb4 --- /dev/null +++ b/ИП2/messages.html @@ -0,0 +1,132 @@ + + + + + + + Сообщения + + + + +
+ + + + + + + +
+ +
+
+ + + + + + +
+ +
+
+
+ +
+ +
+

username

+

Сделал вторую лабу

+
+
+ +
+
+ +
+ +
+

username

+

Сделал вторую лабу

+
+
+ +
+
+ +
+ +
+

username

+

Сделал вторую лабу

+
+
+ +
+
+ +
+ +
+

username

+

Сделал вторую лабу

+
+
+ +
+
+ +
+ +
+

username

+

Сделал вторую лабу

+
+
+ +
+
+ +
+ +
+

username

+

Сделал вторую лабу

+
+
+
+ +
+ +
+
+ + +
+ + + + +
+ + + \ No newline at end of file diff --git a/ИП2/profile.html b/ИП2/profile.html new file mode 100644 index 0000000..b282086 --- /dev/null +++ b/ИП2/profile.html @@ -0,0 +1,84 @@ + + + + + + Ваш профиль + + + + +
+ + + + + + + +
+ +
+
+ + + + + + +
+ +
+
+ +
+ +
+ Павел Ладягин + Краткая информация о себе +
+ +
+
+ + +
+
+ + +
+
+
+ +
+ +
+
+ + +
+ + + + +
+ + \ No newline at end of file diff --git a/ИП2/signup.html b/ИП2/signup.html new file mode 100644 index 0000000..f35fa2f --- /dev/null +++ b/ИП2/signup.html @@ -0,0 +1,64 @@ + + + + + + СОЦИАЛьная сеть + + + + +
+
+ +
+

СОЦИАЛ

+

ьная сеть

+
+
+ +
+ +
+
+ +
+
+
+

Регистрация

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + + + +
+
+
+ + \ No newline at end of file diff --git a/ИП2/source/exit-icon.svg b/ИП2/source/exit-icon.svg new file mode 100644 index 0000000..91a5c04 --- /dev/null +++ b/ИП2/source/exit-icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/ИП2/source/home-icon.svg b/ИП2/source/home-icon.svg new file mode 100644 index 0000000..277ab4c --- /dev/null +++ b/ИП2/source/home-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/ИП2/source/logo.svg b/ИП2/source/logo.svg new file mode 100644 index 0000000..8f70bfc --- /dev/null +++ b/ИП2/source/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/ИП2/source/meme1.jpg b/ИП2/source/meme1.jpg new file mode 100644 index 0000000..8ac0800 Binary files /dev/null and b/ИП2/source/meme1.jpg differ diff --git a/ИП2/source/meme2.jpg b/ИП2/source/meme2.jpg new file mode 100644 index 0000000..93379f7 Binary files /dev/null and b/ИП2/source/meme2.jpg differ diff --git a/ИП2/source/meme3.jpg b/ИП2/source/meme3.jpg new file mode 100644 index 0000000..9e02176 Binary files /dev/null and b/ИП2/source/meme3.jpg differ diff --git a/ИП2/source/meme4.jpg b/ИП2/source/meme4.jpg new file mode 100644 index 0000000..e2b8ebc Binary files /dev/null and b/ИП2/source/meme4.jpg differ diff --git a/ИП2/source/meme5.jpg b/ИП2/source/meme5.jpg new file mode 100644 index 0000000..5b33731 Binary files /dev/null and b/ИП2/source/meme5.jpg differ diff --git a/ИП2/source/message-icon.svg b/ИП2/source/message-icon.svg new file mode 100644 index 0000000..f05d8ff --- /dev/null +++ b/ИП2/source/message-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/ИП2/source/photo.jpg b/ИП2/source/photo.jpg new file mode 100644 index 0000000..66f42b8 Binary files /dev/null and b/ИП2/source/photo.jpg differ diff --git a/ИП2/source/profile-icon.svg b/ИП2/source/profile-icon.svg new file mode 100644 index 0000000..642934f --- /dev/null +++ b/ИП2/source/profile-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/ИП2/source/settings-icon.svg b/ИП2/source/settings-icon.svg new file mode 100644 index 0000000..8dd9d6c --- /dev/null +++ b/ИП2/source/settings-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/ИП2/Отчет_2.docx b/ИП2/Отчет_2.docx new file mode 100644 index 0000000..5acfd71 Binary files /dev/null and b/ИП2/Отчет_2.docx differ