diff --git a/css/main.css b/css/main.css index 6457be7..4bb6939 100644 --- a/css/main.css +++ b/css/main.css @@ -1,3 +1,128 @@ nav { background-color: #87CBB9; -} \ No newline at end of file + border-radius: 4px; + border: 1px solid black; + padding: 1.5rem; + margin-bottom: 15px; +} + + +body { + background-color: #bcc5c3; +} + +.nav-button { + background-color: #B9EDDD; + border-radius: 5px; + border: 1px solid black; + padding: 0.5rem 1.2rem; +} + +.nav-button:hover { + background-color: aqua; +} + +.rounded_border { + border-radius: 5px; +} + +.bordered { + border: 1px solid black; +} +.bordered_left { + border-left: 1px solid black; +} + +.bordered_right { + border-right: 1px solid black; +} + +.content_area { + /* + display: flex; + flex-direction: row; + */ + display: table; + width: 100%; +} + +.menu_button { + width: 100%; + height: 2rem; + margin-bottom: 0.5rem; +} + +.double_width_menu_bar { + display: flexbox; + background-color: #569DAA; + padding: 1rem; + width: 30rem; + margin-right: 1rem; +} + +.wrapper { + width: 100%; + background-color: #577D86; + padding: 5px; +} + +.wrapper:not(:last-child){ + margin-bottom: 1rem; +} +.log_table { + display: table; + width: 100%; +} + +.table_header { + display: table-cell; + text-align: center; + background-color: #bcc5c3; +} + +.table_header:not(:last-child){ + border-right: 1px solid black; +} + +.center_text { + text-align: center; +} + +.table_row { + width: 100%; + display: table-row; +} + +.table_row:not(:last-child){ + border-bottom: 1px solid black; +} + +.table_cell { + display: table-cell; +} + +.table_cell:not(:last-child){ + border-right: 1px solid black; +} + +.menu_bar { + display: flexbox; + background-color: #569DAA; + padding: 1rem; + width: 10rem; + margin-right: 1rem; +} + +.cell { + display: table-cell; +} + +.content { + background-color: #B9EDDD; + padding: 1rem; +} + + +.content_area::after { + clear: both; +} diff --git a/index.php b/index.php index 9a47aba..7583a32 100644 --- a/index.php +++ b/index.php @@ -4,17 +4,78 @@ --> + This is a test - + - - +
+ + + +
+ test + "; + echo ""; + ?> + +
+ +
+
+ Log Statistics (This Week) +
+
+
Level
+
# of occurances
+
+
+
Warning
N/A
+
+
+
Critical
N/A
+
+
+
Info
N/A
+
+
+
+ +
+ Script Failures (Last 10) +
+
+
Date
Script
+
+
+
+ +
+ Jobs Run (Last 10) +
+
+
Date/Time
Script
+
+
+
+ +
+
+ + \ No newline at end of file