diff --git a/cv.md b/cv.md new file mode 100644 index 0000000..8048eb5 --- /dev/null +++ b/cv.md @@ -0,0 +1,45 @@ +# About me + +My name is Danik Lutsev. You can contact me by email(danlootsev@gmail.com) or in social networks ([Telegram](https://t.me/SixStringer436)). + +# Skills + +HTML/CSS
+Javascript
+React + +# Code Examples + +Code for disable scroll on website: + +```javascript +window.disableScroll = function() { + const widthScroll = window.innerWidth - document.body.offsetWidth; + document.body.dbScrollY = window.scrollY + document.body.style.cssText = + ` +position:fixed; +top: ${-window.scrollY}px; +left:0; +width:100%; +overflow: hidden; +height: 100vh; +padding-right: ${widthScroll}px; +`; +} +window.enableScroll = function() { + document.body.style.cssText = ``; + window.scroll = ({ top: document.body.dbScrollY }) + +} +``` + +# Education + +Studied at the Belarusian Institute of Law
+ + +# English + +I had a practice of speaking on foreign trips. I can also read documentation, literature, watch films. +In my opinion, my English level is **A2**. diff --git a/img/Photo.JPG b/img/Photo.JPG new file mode 100644 index 0000000..0032a34 Binary files /dev/null and b/img/Photo.JPG differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..f26b0c5 --- /dev/null +++ b/index.html @@ -0,0 +1,73 @@ + + + + + + Curriculum vitae + + + + +
+
+
+
+

Daniil Lutsev

+ +
+ hi! +
+ +
+
+
+

Summary

+

+ I've been doing front-end javascript development for about 7 months. Now I am learning React

+
+
+

Skills

+
    +
  • Javascript
  • +
  • HTML
  • +
  • CSS
  • +
  • Git
  • +
  • React
  • +
+ +
+ +
+

Experience

+

2013 to 2015
+ Jeweller - Jeweller Factory 'ZORKA', Minsk

+

2015 to 2018
+ Sales Manager - 'Expert-center', Minsk

+

2018 to 2020
+ Jeweller/3d-Designer - 'Goldman', Minsk

+
+
+

Education

+

BIP - University of Law, Economist-manager (2008-2013).

+
+
+

English

+

Level: A2. I can read documentation, literature, watch some films.

+
+
+ + +
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..a089545 --- /dev/null +++ b/style.css @@ -0,0 +1,58 @@ + + + +body { + + background: linear-gradient(to top, #355070, #6D597A); + color: #EAAC8B; + font-family: 'Roboto', serif; + font-size: 18px; + margin: 8px 0; +} + +.wrapper{ +margin: 0 auto; + max-width: 1024px; +} + +header{ +border-bottom: 1px solid #283C55; + +} + +.info{ + display: flex; +} + +img{ + margin: 20px 0 10px; + margin-left: auto; + margin-right: 200px; + display: block; + border-radius:10px; + height: 140px; + width: auto; +} +a { + text-decoration: none; + color: B56576; +} + + +h2{ +color: #B56576 +} +.item{ + border-bottom: 1px solid #283C55; +} + +@media(max-width:800px){ + img{ + margin-right: 30px; + display: block; + border-radius:10px; + height:100px; + width: auto; + } + +} \ No newline at end of file