diff --git a/lib/AboutView.php b/lib/AboutView.php index c7eb817..edfec5e 100644 --- a/lib/AboutView.php +++ b/lib/AboutView.php @@ -13,32 +13,42 @@ class AboutView extends View public function page() { $body = <<Roster:
-
-

Project Manager - James

+

Roster:

+
+

James Murray - Project Manager

+ James Murray

- blurb. + A senior at Michigan State University majoring in Computer Science, + James has a strong love for software development, + especially the creation of desktop applications.

-
-

Artifacts Manager - Sean

+
+

Sean Joseph - Artifacts Manager

+ Sean Joseph

- blurb. + Senior Computer Science Major at Michigan State University. + I enjoy long walks on the beach and casual conversation about + vimrc files. Homepage Here

-
-

Project Facilitator - Stephen

+
+

Stephen Alfa - Project Facilitator

+ Stephen Alfa +

+
+

Logan Arent - Safety/Security Engineer

+ Logan Arent

- blurb. + Senior in Computer Science at Michigan State University. + Working to gain as much knowledge as possible about software development.

-
-

Safety/Security Engineer - Logan

+
+

Colin Coppersmith - Domain Expert/Customer Liaison

+ Colin Coppersmith

- blurb. -

-
-

Domain Expert/Customer Liaison - Colin

-

- blurb. + 20 years old, from Clarkston, MI. + Graduating in May of 2018 with a B.S. in Computer Science. + Currently in a web development internship for Jackson National Life supporting the Mobile Technologies department.

HTML; diff --git a/lib/LandingView.php b/lib/LandingView.php index 5ceb2fa..59c51a9 100644 --- a/lib/LandingView.php +++ b/lib/LandingView.php @@ -11,8 +11,36 @@ class LandingView extends View public function page() { $body = <<Paint Defect Reporting! -

Find those defects, boys!

+
+

Project Description

+

+ Our project is to automate the recording of paint defects and the creation of reports. + Analysts will use the system instead of paper diagrams to record paint defects. + It will automatically create daily reports and allow for easy creation of the reports for larger time periods. + The system will be safe, reliable, and secure. + It will be used at the following GM plants: Lansing Delta Township, Lansing Grand River, and Lake Orion Assembly. +

+
+ +
+

Project Background

+

+General Motors automotive plants check for paint defects at points along the assembly line so that the defects can be fixed and so sources of defects can be found and eliminated. + Currently, analysts examine the cars and record defects on paper diagrams. + Later the analyst will compile the data and create daily reports and summary reports for larger time periods. + +

+
+ + HTML; return $body; } diff --git a/lib/prelude.inc.php b/lib/prelude.inc.php index b1d9ce8..21105c4 100644 --- a/lib/prelude.inc.php +++ b/lib/prelude.inc.php @@ -1,9 +1,7 @@ Secure Pages Login +

Secure Pages Login

diff --git a/secure/minutes.php b/secure/minutes.php index a09249b..437dfa3 100644 --- a/secure/minutes.php +++ b/secure/minutes.php @@ -6,6 +6,7 @@ require_once "../lib/protected.inc.php"; + Meeting Minutes diff --git a/style/default.css b/style/default.css index e26108d..f9b5cec 100644 --- a/style/default.css +++ b/style/default.css @@ -21,13 +21,20 @@ time, mark, audio, video background:transparent; } +/* body { - background : lightgrey; + background-image: url("../assets/redcedarbackground.jpg"); + background-position: center; + background-size: cover; +} +*/ +body{ + background: darkgreen; } header { padding-top: 1em; - background : white; + background : rgba(255,255,255,1); text-align: center; line-height: 3em; } @@ -36,20 +43,57 @@ header h1 { font-size : 2em; } -nav a{ - color : darkgray; +a{ + color : rgba(100,100,100,1); font-style: normal; text-decoration : none; background : inherit; } -nav a:hover{ - color : black; - background: lightgrey; - font-size:1.1em; +a:hover{ + color : rgba(0,0,0,1); } div.card{ - border:thick black; - display:inline-block; + text-align: left; + margin: 1em auto; + border: medium solid black; + border-radius: 10px; + /*height: 550px;*/ + width: 700px; + background: rgba(255,255,255,1); +} + +div.card h2{ + margin-top: 0.75em; + margin-bottom: 0.75em; + text-align: center; +} + +div.card img{ + height:400px; + width:300px; + border:thick solid black; + display:block; + padding: 5px; + margin: auto; + +} + +div.card p{ + padding: 0 4em; + margin: 0.75em 0; +} + +div.card ul{ + margin-left: 75px; + margin-bottom: 25px; + display: block; +} + +div.team h1{ + font-size: 3em; + text-align: center; + margin: 0.75em 0; + color: white; }