diff --git a/index.html b/index.html index a9f326d..918aceb 100644 --- a/index.html +++ b/index.html @@ -15,7 +15,7 @@

Daniel Jones

Web Developer, Game Designer, and Blogger.

- +

My name is Daniel Jones. I have been programming as a hobby since I was twelve years old.
@@ -23,6 +23,8 @@
My interests include geocaching, Rust programming, web development, and puzzle solving.

+
+

Projects:

@@ -66,7 +68,7 @@

diff --git a/style.css b/style.css index 2475391..fb0fab6 100644 --- a/style.css +++ b/style.css @@ -18,6 +18,8 @@ body { top: 0; right: 0; bottom: 0; + + } .page-wrapper { padding: 0px; @@ -27,10 +29,49 @@ body { top: 0; width: calc(100% - 2*48px); word-wrap: break-word; + display: grid; + grid-template-columns: repeat(1, 1fr); } -p { - background-color: black; - border-radius: 30px; +header { + grid-column: 2 / span 8; + background-color: rgb(128, 128, 128, 0.5); + border-radius: 10px; + padding: 10%; +} + + +#description { + margin-top: 50px; + grid-column: 2 / 8; + background-color: rgb(128, 128, 128, 0.5); + border-radius: 10px; + padding: 10%; +} + + +#projects { + margin-top: 100px; + grid-column: 2 / 8; + background-color: rgb(128, 128, 128, 0.5); -} \ No newline at end of file + border-radius: 10px; + padding: 10%; +} + +#jobs { + margin-top: 100px; + grid-column: 2 / 8; + background-color: rgb(128, 128, 128, 0.5); + border-radius: 10px; + padding: 10%; +} + +#school { + margin-top: 100px; + grid-column: 2 / 8; + background-color: rgb(128, 128, 128, 0.5); + border-radius: 10px; + padding: 10%; +} +