diff options
Diffstat (limited to 'www')
| -rw-r--r-- | www/css/styles.css | 60 | ||||
| -rw-r--r-- | www/index.html | 3 | ||||
| -rw-r--r-- | www/testing.html (renamed from www/test.html) | 0 |
3 files changed, 61 insertions, 2 deletions
diff --git a/www/css/styles.css b/www/css/styles.css new file mode 100644 index 0000000..cb56704 --- /dev/null +++ b/www/css/styles.css @@ -0,0 +1,60 @@ +* { + margin: 0; + padding: 0; + background: transparent; +} + +p, li { + padding-top: 4px; +} + +ul { + padding-left: 20px; +} + +body { + font-family: Arial, Helvetica, sans-serif; + color: white; + background: black; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +button { + padding: 10px; + color: white; + background: #2a2a2a; +} + +img { + padding: 8px; +} + +header { + background: #202020; + padding: 30px; + height: 5vh; + text-align: center; + font-size: 30px; +} + +#section-div { + align-self: center; + width: 70vw; + min-height: 100vh; + background: #1a1a1a; +} + +section { + padding: 20px 24px 24px; + font-size: 20px; +} + +footer { + background: #202020; + padding: 25px; + text-align: center; + font-size: 10px; + margin-top: auto; +} diff --git a/www/index.html b/www/index.html index 6cd383e..11c6a30 100644 --- a/www/index.html +++ b/www/index.html @@ -13,9 +13,8 @@ <section> <h1> Links to content </h1> <p><a href="about">About</a></p> - <p><a href="test">Testing</a></p> <p><a href="projects">Projects</a></p> - <p><a href="js-test">JavaScript thing</a></p> + <p><a href="testing">Testing</a></p> </section> <section> <h1> Welcome to the small HTML Page </h1> diff --git a/www/test.html b/www/testing.html index 9f0d12d..9f0d12d 100644 --- a/www/test.html +++ b/www/testing.html |