diff --git a/files/dashboard/index.php b/files/dashboard/index.php index 22b5ad8..aec536e 100644 --- a/files/dashboard/index.php +++ b/files/dashboard/index.php @@ -91,6 +91,7 @@ if (isset($_GET['group'])) { } else { echo "

No group specified.

"; } +echo "

Source code can be found here.

"; ?> diff --git a/files/dashboard/styles.css b/files/dashboard/styles.css index 38bf369..260460d 100644 --- a/files/dashboard/styles.css +++ b/files/dashboard/styles.css @@ -8,6 +8,26 @@ body { color: #bdc3c7; /* Dimmer text color */ } +/* unvisited link */ +a:link { + color: rgb(184, 44, 44); +} + +/* visited link */ +a:visited { + color: rgb(42, 176, 42); +} + +/* mouse over link */ +a:hover { + color: rgb(154, 84, 119); +} + +/* selected link */ +a:active { + color: rgb(96, 96, 196); +} + .hidden-info { display: none; }