From 8d0093559135c7aee18d3d5a1dad55a262b71cba Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 14 Feb 2024 23:00:05 +0400 Subject: Added new main page --- _includes/styles.scss | 8 ++++++-- _pages/index.html | 33 ++++++++++++++++++++++++++++++--- _scss/_welcome.scss | 20 ++++++++++++++++++++ 3 files changed, 56 insertions(+), 5 deletions(-) create mode 100644 _scss/_welcome.scss diff --git a/_includes/styles.scss b/_includes/styles.scss index 36697ec..21ff84e 100644 --- a/_includes/styles.scss +++ b/_includes/styles.scss @@ -1,6 +1,10 @@ +// Base @import "reset"; @import "variables"; -@import "highlighter"; @import "framework"; +@import "print"; + +// Modules +@import "highlighter"; @import "navbar"; -@import "print"; \ No newline at end of file +@import "welcome"; \ No newline at end of file diff --git a/_pages/index.html b/_pages/index.html index 47ea02e..90a64a9 100644 --- a/_pages/index.html +++ b/_pages/index.html @@ -3,6 +3,33 @@ layout: page permalink: /index.html --- -{%- include contacts.html -%} -{%- include links.html -%} -{%- include posts.html -%} \ No newline at end of file +
+

Valentin Popov

+

Software Engineer // Mathematician

+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
+
\ No newline at end of file diff --git a/_scss/_welcome.scss b/_scss/_welcome.scss new file mode 100644 index 0000000..6499dcc --- /dev/null +++ b/_scss/_welcome.scss @@ -0,0 +1,20 @@ +main { + left: 50%; + position: absolute; + text-align: center; + top: 40%; + transform: translate(-50%, -50%); + + div { + white-space: nowrap; + + a { + color: $color-text; + padding: 0 .5em; + + &:visited { + color: $color-text; + } + } + } +} \ No newline at end of file -- cgit v1.2.3