commit 0f080e98a95e00fa1152e7fed65a209b7bc683c0 Author: Chris Bell Date: Fri Jan 3 23:38:26 2025 -0600 Init diff --git a/index.html b/index.html new file mode 100644 index 0000000..6c4a564 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + + Bellsworne Tech + + + + + + +
+ Bellsworne Tech Logo +
+ +
+

Welcome to Bellsworne Tech! This web page is currently under construction. Please check back with us soon!

+
+ + + + \ No newline at end of file diff --git a/res/css/main.css b/res/css/main.css new file mode 100644 index 0000000..18f1ce2 --- /dev/null +++ b/res/css/main.css @@ -0,0 +1,42 @@ +:root { + --main-font-color: #dedede; + --main-bg-color: #2a2a2a; + --main-accent-color: #b28261; + --secondary-accent-color: #8f4040; +} + +* { + margin: 0; + padding: 0; + font-family: 'LeagueGothic', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; + color: var(--main-font-color); + letter-spacing: 1px; +} + +@font-face { + font-family: 'LeagueGothic'; + src: url('../fonts/LeagueGothic.ttf'); +} + +body { + background-color: var(--main-bg-color); +} + +#header-img { + width: 100vw; + height: 25vh; + display: flex; + justify-content: center; + align-items: center; + padding-top: 5vh; + padding-bottom: 5vh; +} + +#header-img img { + max-width: 100%; + max-height: 100%; +} + +#content { + text-align: center; +} \ No newline at end of file diff --git a/res/fonts/LeagueGothic.ttf b/res/fonts/LeagueGothic.ttf new file mode 100755 index 0000000..cc762c8 Binary files /dev/null and b/res/fonts/LeagueGothic.ttf differ diff --git a/res/img/bellsworne-tech.png b/res/img/bellsworne-tech.png new file mode 100644 index 0000000..9639fd6 Binary files /dev/null and b/res/img/bellsworne-tech.png differ diff --git a/res/img/logo.png b/res/img/logo.png new file mode 100644 index 0000000..f81c091 Binary files /dev/null and b/res/img/logo.png differ