diff options
| author | Carson Fleming <cflems@cflems.net> | 2017-03-07 17:49:35 -0500 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2017-03-07 17:49:35 -0500 |
| commit | 7c22c8b54fa09348ce3a8077dd49384c917d6db0 (patch) | |
| tree | 8a3ab210d7787f034cebacc42a5bf134a926e46f /dash | |
| parent | 4132092529e478435c2c358203b291cd7b4c579c (diff) | |
| download | bulletin-7c22c8b54fa09348ce3a8077dd49384c917d6db0.tar.gz | |
Tweaked menu, added incentive for Reed to write help page
Diffstat (limited to 'dash')
| -rw-r--r-- | dash/css/dash.css | 22 | ||||
| -rw-r--r-- | dash/header.php | 3 | ||||
| -rw-r--r-- | dash/help.php | 17 |
3 files changed, 42 insertions, 0 deletions
diff --git a/dash/css/dash.css b/dash/css/dash.css index 02fed66..3e79901 100644 --- a/dash/css/dash.css +++ b/dash/css/dash.css @@ -313,3 +313,25 @@ h3 a:hover, h4 a:hover { margin: 0; text-align: center; } +.box { + width: 550px; + margin: 2em auto; + border-radius: 5px; + background-color: #ffffff; + box-shadow: 0px 0px 5px rgba(0,0,0,0.75); + padding: 1em; +} +.cbox { + text-align: center; +} +.box h1, .box h3, .box h4, .box p { + margin: 0.125em auto; +} +.box .hr { + height: 1px; + background-color: #eeeeee; + margin: 0.75em auto; +} +.cbox .hr { + width: 90%; +} diff --git a/dash/header.php b/dash/header.php index 47b8aed..145180f 100644 --- a/dash/header.php +++ b/dash/header.php @@ -40,6 +40,9 @@ foreach ($navtitles as $k => $title) { <a href="<?=$b_config['base_url'].'dash/profile.php';?>"> <span class="navspan"><?=htmlentities($b_user['name']);?> ▾</span> <ul class="subnav"> + <a href="<?=$b_config['base_url'].'dash/profile.php';?>"> + <li><span class="navspan">Profile</span></li> + </a> <a href="<?=$b_config['base_url'].'dash/settings.php';?>"> <li><span class="navspan">Settings</span></li> </a> diff --git a/dash/help.php b/dash/help.php new file mode 100644 index 0000000..db8c9c7 --- /dev/null +++ b/dash/help.php @@ -0,0 +1,17 @@ +<?php +define('HEIRARCHY', 1); + +require('dash_common.php'); +$title = 'Help / Bulletin'; +require('header.php'); +?> + <div class="box cbox"> + <h1>Reed</h1> + <p>Write this page, hoe.</p> + <div class="hr"></div> + <h4>Child Abuse Hotline</h4> + <p>If Reed has abused or molested you in any way, shape, or form, please let us know immediately.</p> + </div> +<?php +require('footer.php'); +?> |
