From 793d45647eb60f7cd0405e479cb893cf8281a961 Mon Sep 17 00:00:00 2001 From: Notoric Date: Thu, 23 May 2024 21:35:40 +0100 Subject: [PATCH] Added coloured border to about me --- index.html | 4 ++-- styles/global.css | 40 +++++++++++++++++++++++++++++----------- 2 files changed, 31 insertions(+), 13 deletions(-) diff --git a/index.html b/index.html index e29495e..caadf20 100644 --- a/index.html +++ b/index.html @@ -36,8 +36,8 @@
-
-

About Me

+

About Me

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

diff --git a/styles/global.css b/styles/global.css index 5a11ea9..a393eed 100644 --- a/styles/global.css +++ b/styles/global.css @@ -221,20 +221,15 @@ em { font-weight: 700; } -#aboutme { +#box-with-title { border-radius: 60px; - background-image: repeating-conic-gradient( - #ff0050 0%, - #ff8000 33.333%, - #7520ff 66.666%, - #ff0050 100% - ); margin-top: 100px !important; padding-inline: 50px; padding-block: 30px; position: relative; max-width: 800px; margin: auto; + overflow: hidden; &::after { content: ""; position: absolute; @@ -246,18 +241,41 @@ em { border-radius: 57px; background-color: #111; } + &::before { + content: ""; + position: absolute; + top: calc(50% - 55vw); + left: calc(50% - 55vw); + height: 110vw; + width: 110vw; + z-index: 0; + background-image: repeating-conic-gradient( + #ff0050 0%, + #ff8000 33.333%, + #7520ff 66.666%, + #ff0050 100% + ); + animation: rotate 10s linear infinite; + } +} + +#aboutme { + width: fit-content; + height: fit-content; + margin: auto; + position: relative; } #aboutme h1 { - position: absolute; - top: -1.3em; - left: 70px; background-color: #111; padding-inline: 15px; + position: absolute; + top: -40px; + left: 70px; z-index: 2; } -#aboutme p { +#box-with-title p { position: relative; z-index: 2; }