commit 0cdf70f4a316b705d75361465bb7cd0eec4288e8 Author: Joe Tretter Date: Mon Feb 5 07:32:21 2024 -0600 initial checkin diff --git a/TretterCoatOfArms.png b/TretterCoatOfArms.png new file mode 100755 index 0000000..cd1aaea Binary files /dev/null and b/TretterCoatOfArms.png differ diff --git a/favicon.png b/favicon.png new file mode 100755 index 0000000..6b255f9 Binary files /dev/null and b/favicon.png differ diff --git a/index.html b/index.html new file mode 100755 index 0000000..b4e3c90 --- /dev/null +++ b/index.html @@ -0,0 +1,40 @@ + + + + + + + Tretter Solutions LLC + + + + + +
+ +
+ +
Tretter Solutions LLC
+
+

Custom technical solutions for your problems.

+ +
+ Contact me today. +
+ + + + + + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100755 index 0000000..38bdce8 --- /dev/null +++ b/main.css @@ -0,0 +1,78 @@ +:root { + --logo-background-color: #0e2058; + --company-name-color: #eda421; + background-color: #ffffff; + font-family: Verdana, Geneva, sans-serif; +} + +img.logo { + padding-left: 20px; + padding-top: 10px; +} + +div.logo-wrapper { + width: 200px; + height: 200px; + border-bottom-right-radius: 100%; + background-color: var(--logo-background-color); + z-index: 1; +} + +div.text-block { + margin-top: -50px; + margin-left: 200px; + margin-right: 50px; +} + +@media only screen and (max-width:630px) { + div.logo-wrapper { + margin-top: 25px; + width: 50px; + height: 50px; + } + + img.logo { + width: 30px; + padding-top: 0px; + padding-left: 10px; + margin-top: -10px; + } + + div.text-block { + margin-left: 50px; + } + + h1 { + font-size: large; + } + + li { + font-size: small; + } +} + + + +div.top-banner { + position: absolute; + top: 0; + background-color: var(--logo-background-color); + color: var(--company-name-color); + font-size: 50px; + width: 99%; + text-align: center; + z-index: -1; +} + +@media only screen and (max-width:1000px) { + div.top-banner { + font-size: 25px; + } +} + +div.footer { + position: absolute; + color: gray; + bottom: 0; + right: 0; +} \ No newline at end of file