From 02120b78b2e2a3abd860d8357ebd5b3b67350e6a Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 19 Dec 2025 12:12:16 -0800 Subject: [PATCH] put stuff in divs --- files/dashboard/index.php | 40 +++++++++++++++++++++----------------- files/dashboard/styles.css | 25 +++++++++++++----------- 2 files changed, 36 insertions(+), 29 deletions(-) diff --git a/files/dashboard/index.php b/files/dashboard/index.php index 16e6618..8d137eb 100644 --- a/files/dashboard/index.php +++ b/files/dashboard/index.php @@ -9,23 +9,26 @@ -

Query GPOs by Group

- This tool allows you to query Group Policy Objects in Active Directory by Restricted Group.
- Search is case insensitive and supports partial match.
- Once you have the GPO name, you can locate this in the GPO management snap-in and find what OUs it links to.

- -

- - - -

- -

- - - -

- +

+

Query GPOs by Group

+ This tool allows you to query Group Policy Objects in Active Directory by Restricted Group.
+ Search is case insensitive and supports partial match.
+ Once you have the GPO name, you can locate this in the GPO management snap-in and find what OUs it links to.

+

+
+ +
+ + + +

+ +

+ + + +

+ No group specified.

"; } -echo "

Source code can be found here.

"; +echo "

"; +//echo "

Source code can be found here.

"; ?> diff --git a/files/dashboard/styles.css b/files/dashboard/styles.css index 260460d..028901e 100644 --- a/files/dashboard/styles.css +++ b/files/dashboard/styles.css @@ -8,24 +8,27 @@ body { color: #bdc3c7; /* Dimmer text color */ } -/* unvisited link */ -a:link { - color: rgb(184, 44, 44); -} - -/* visited link */ +a, +a:link, a:visited { - color: rgb(42, 176, 42); + color: #3498db; /* Default link color (blue) */ + text-decoration: none; + transition: color 0.2s ease; } -/* mouse over link */ +/* Visited links (distinct yet in the same palette) */ +a:visited { + color: #9b59b6; /* Soft purple */ +} + +/* Hover state – bright, engaging, and contrasting */ a:hover { - color: rgb(154, 84, 119); + color: #1abc9c; /* Turquoise‑green */ } -/* selected link */ +/* Active state – immediate feedback */ a:active { - color: rgb(96, 96, 196); + color: #e74c3c; /* Warm red */ } .hidden-info {