diff --git a/public/index.html b/public/index.html index af293ed..23bebdb 100755 --- a/public/index.html +++ b/public/index.html @@ -27,17 +27,29 @@

Culture Bobbin

Contact + +
+
+

About me

+

+ My name is + Xi. + I currently work as an engineer in Web3! Once upon a time, I studied cultural anthropology. I really like people. +

+

About this site

+

+ This page was made lovingly by hand without any JavaScript. + + HTML should be written the way Bordier makes Yuzu butter. +

+

Social Media

- -
-
-

About me

-

- My name is - Xi. - I currently work as an engineer in Web3! Once upon a time, I studied cultural anthropology. I really like people. -

-

About this site

-

- This page was made lovingly by hand without any JavaScript. - - HTML should be written the way Bordier makes Yuzu butter. -

-
+
diff --git a/public/style.css b/public/style.css index 82a4caa..ca9fde6 100755 --- a/public/style.css +++ b/public/style.css @@ -1,23 +1,20 @@ -/* h1 { - text-align: center; - font-size: 36px; - font-weight: 200; - max-width: 600px; -} -*/ - html { - background-color: bisque; font-family: 'Noto Sans', sans-serif; } -body { - display: grid; - grid-template-columns: repeat(4, 1fr); - grid-auto-rows: minmax(100px, auto); - grid-template-areas: - "header header header header" - "nav main main main"; +@media screen { + article { + display: grid; + column-gap: 20px; + } + + nav ul { + display: flex; + } + + nav li { + flex: 1; + } } header { @@ -30,36 +27,33 @@ header { font-weight: 600; } -.main { - grid-area: main; - padding-right: 36px; -} - svg { width: 20px; padding: 10px; } -nav { - grid-area: nav; -} - nav ul { + border: 1px solid black; + display: flex; list-style: none; + padding: unset; } nav ul a { + border: 1px solid black; + color: inherit; + display: block; font-size: small; font-family: 'Noto Sans', sans-serif; font-weight: bolder; - color: inherit; + padding: 10px; + text-align: center; text-decoration: none; text-transform: UPPERCASE; } -.description { - display: flex; - justify-content: center; +nav ul a:hover { + background: azure; } .recipes { @@ -69,5 +63,4 @@ nav ul a { .social-media { display: flex; - padding-left: 30px; }