From 7a19c486618fdef936f27b2ff4c9e5a16e4bcc2c Mon Sep 17 00:00:00 2001 From: BGetchell Date: Sat, 30 Sep 2023 18:58:26 -0500 Subject: [PATCH] updates to index & styles --- src/index.html | 100 ++++++++++++++++++++++++++++++++++++++++--------- src/styles.css | 51 +++++++++++++++++++------ 2 files changed, 122 insertions(+), 29 deletions(-) diff --git a/src/index.html b/src/index.html index e5518da..9f88bb9 100644 --- a/src/index.html +++ b/src/index.html @@ -1,32 +1,96 @@ + - Welcome to Getchell Cloud + Getchell's Cloud + -
-

Welcome to Getchell Cloud

-
-
-

We're thrilled to have you here. Website coming soon! maybe?

-
+ + +
+
+

Welcome to Getchell Cloud

+
+

We're thrilled to have you here. Dive into the world of Bradley Getchell below.

+
+ +
+

About Me

+

+ Bradley Getchell
+ San Antonio, TX, 78254
+ (910) 728-5230 | Bradley.Getchell@hotmail.com
+ Security Clearance: DOD Top Secret - SCI || 8570 Level: IAM 3 (CISSP)
+

+

Professional Summary

+

+ Experienced Security Engineer with a strong background in vulnerability management, endpoint security, and supply chain security. + Adept at conducting security assessments, developing, and maintaining security policies, collaborating with crossfunctional + teams to implement security controls, managing security incidents, and monitoring security systems and networks. +

+
+ +
+

Skills

+ +
+ +
+

Certifications

+ +
+ +
+

Website Visitors

+
Loading...
+
+ +
+

Get In Touch

+

For any inquiries, collaborations, or feedback, you can reach out to me via email at Bradley.Getchell@hotmail.com or call me at (910) 728-5230.

+
+ - - -
Loading...
+ + diff --git a/src/styles.css b/src/styles.css index 19cf38c..2b952b3 100644 --- a/src/styles.css +++ b/src/styles.css @@ -2,26 +2,55 @@ body { font-family: Arial, sans-serif; margin: 0; padding: 0; - background-color: #f4f4f4; color: #333; + background-color: #f5f5f5; } -header, main, footer { - max-width: 800px; - margin: 20px auto; - padding: 20px; - background-color: #fff; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +nav ul { + list-style-type: none; + padding: 0; + background-color: #333; + position: fixed; + top: 0; + left: 0; + width: 200px; + height: 100%; + overflow: auto; } -header { +nav li { text-align: center; - background-color: #0078D4; + padding: 10px 0; +} + +nav li a { + display: block; color: white; - padding: 40px; + text-decoration: none; + transition: background-color 0.3s; +} + +nav li a:hover { + background-color: #f1f1f1; + color: #333; +} + +section { + margin-left: 210px; + padding: 20px; + background-color: #ffffff; + border: 1px solid #ddd; + border-radius: 5px; + margin-bottom: 20px; +} + +h1, h2 { + color: #003366; } footer { text-align: center; - font-size: 0.8em; + padding: 10px 0; + background-color: #003366; + color: #ffffff; }