diff --git a/css/Caveat-Regular.ttf b/css/Caveat-Regular.ttf new file mode 100644 index 0000000..697da1a Binary files /dev/null and b/css/Caveat-Regular.ttf differ diff --git a/css/style.css b/css/style.css index 6a64d90..67f92a2 100644 --- a/css/style.css +++ b/css/style.css @@ -3,6 +3,11 @@ src: url(../css/ProblematicPiercer.ttf); } +@font-face { + font-family: Caveat; + src: url(../css/Caveat-Regular.ttf); +} + body { display: flex; align-items: center; @@ -16,6 +21,37 @@ body { font-family: ProblematicPiercer; } -div.test { - font-size: 100px; +div.row { + display: flex; + flex-direction: row; + width: 900px; +} + +div.photo { + border-radius: 300px; + box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; + background-image: url(../images/favicon.jpg); + width: 300px; + height: 300px; + background-size: contain; + margin-right: 20px; +} + +div.info { + display: flex; + width: 600px; + flex-direction: column; +} + +div.title { + font-size: 50px; + display: flex; + align-items: center; + justify-content: center; +} + +div.bio { + font-family: Caveat; + font-size: 25px; + text-align: justify; } \ No newline at end of file diff --git a/index.html b/index.html index bf16393..8b40864 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,14 @@ -
Page in development
+
+
+
+
About me
+
+

Спасибо за поддержку Thunderbird, которая финансируется такими же пользователями, как вы! Для создания Thunderbird требуются инженеры-программисты, дизайнеры, системные администраторы и серверная инфраструктура. Поэтому, если вам нравится Thunderbird, лучший способ обеспечить доступность Thunderbird — сделать пожертвование.

+
+
+
diff --git a/js/script.js b/js/script.js index 9623cfa..6fa1292 100644 --- a/js/script.js +++ b/js/script.js @@ -1,3 +1,4 @@ $(document).ready(function(){ + $(this).on("contextmenu", e => e.preventDefault()); $('body').delay(500).fadeTo(500, 1); });