diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 08:07:14 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 08:07:14 +0000 |
commit | 4886dce1a479bb60890f4a8ccd3552ed7bd157e3 (patch) | |
tree | df3a141ff9c348ff8acd785b31a04fff218ba50e /wk8/pset | |
parent | 34df58eeaa5929b7f0b2a065d07c92c998caad5a (diff) |
Fri, Jul 5, 2024, 1:07 AM -07:00
Diffstat (limited to 'wk8/pset')
-rw-r--r-- | wk8/pset/homepage/index.html | 1 | ||||
-rw-r--r-- | wk8/pset/homepage/styles.css | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/wk8/pset/homepage/index.html b/wk8/pset/homepage/index.html index f52fccb..ecdb0e5 100644 --- a/wk8/pset/homepage/index.html +++ b/wk8/pset/homepage/index.html @@ -11,6 +11,7 @@ </head> <body class="centered"> <div id="container"> + <div class="topbar">placeholder banner</div> <div class="large"> Ivy Forge </div> diff --git a/wk8/pset/homepage/styles.css b/wk8/pset/homepage/styles.css index eb7e54d..e733212 100644 --- a/wk8/pset/homepage/styles.css +++ b/wk8/pset/homepage/styles.css @@ -11,6 +11,7 @@ --accent-2:#a225e3; --content-spacing:5px; --background-img: #332233; + --banner: #EB53D3; --text-color: white; --border:1px solid black; } @@ -26,6 +27,17 @@ body { background-color: var(--background-img); color: var(--text-color); } +.topbar { + background-color: var(--banner); + height:150px; + margin-bottom:var(--content-spacing); + border:var(--border); +} +#container, +.topbar img { + max-width: 850px; + margin: 0 auto; +} main { width: 74%; |