Added a lot of content

This commit is contained in:
Chris Bell 2025-01-10 12:33:03 -06:00
parent 0f080e98a9
commit 73f2f973ce
3 changed files with 283 additions and 12 deletions

5
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

View File

@ -6,22 +6,86 @@
<title>Bellsworne Tech</title>
<link rel="icon" href="res/img/logo.svg">
<link rel="stylesheet" href="res/css/main.css">
<script>
function toggleMenu() {
var menu = document.getElementById('nav-menu');
menu.classList.toggle('show');
console.log('Menu toggled');
}
</script>
</head>
<body>
<div id="header">
<nav id="main-nav">
<div id="nav-logo">
<img src="res/img/logo.png" alt="Bellsworne Tech Logo">
</div>
<div style="align-self: flex-start" id="hamburger-icon" onclick="toggleMenu()">
&#9776;
</div>
<ul id="nav-menu">
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<div id="header-img">
<img src="res/img/logo.png" alt="Bellsworne Tech Logo">
</div>
<header>
<div class="header-left">
<h1>Welcome to Bellsworne Tech!</h1>
<p>We are a dedicated team of software engineers committed to developing high-quality software solutions. Our portfolio includes both free and open-source software, as well as professional, source-available tools. We believe in the power of open-source software to drive innovation and collaboration, while also offering premium tools for professional use.</p>
</div>
<div class="header-right">
<div id="header-img">
<img src="res/img/logo.png" alt="Bellsworne Tech Logo">
</div>
</div>
</header>
<div id="content">
<h1>Welcome to Bellsworne Tech! This web page is currently under construction. Please check back with us soon!</h1>
<div class="content-full-width" id="about">
<h1>About Us</h1>
<p>Our team has over 5 years of industry experience in creating and managing software applications, websites, and more. We are passionate about delivering top-notch software solutions that meet the unique needs of our clients.</p>
</div>
<div class="content-full-width" id="services">
<h1>Services</h1>
<p>We offer a range of services including custom software application development and bespoke website creation. Our expertise ensures that we can deliver tailored solutions that help your business thrive in the digital landscape.</p>
<h2>What we offer:</h2>
<ul>
<li>Website design and development - <a href="https://forms.gle/DkMftohQZyrWFNyn6">Request a quote</a></li>
<li>Custom software solutions - Coming soon</li>
<li>Mobile app development - Coming soon</li>
<li>Web app development - Coming soon</li>
</ul>
</div>
<div class="content-full-width" id="products">
<h1>Products</h1>
<h2>Cogwheel</h2>
<p>Cogwheel is an open source suite of software/game development tools written in C# for the .NET Framework. It is still early in development, but currently features a robust Command system
that lets easily prototype, debug, and develop software or games.</p>
<ul>
<li><a href="https://git.bellsworne.tech/Bellsworne/Cogwheel/packages">NuGet Package</a></li>
<li><a href="https://git.bellsworne.tech/Bellsworne/Cogwheel">Source code on Git</a></li>
</ul>
</div>
<div class="content-full-width" id="contact">
<h1>Contact Us</h1>
<p>For more information about our services or products, please contact us using the form below:</p>
<iframe style="background-color: #dedede" src="https://docs.google.com/forms/d/e/1FAIpQLSfDf3ip-tSFK_aePpT7J7NFvprgZksSthsNQ99PgJ2UiSwLUw/viewform?embedded=true"
width="640" height="1051" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
<div id="footer">
</div>
<footer>
<p>&copy;2025 Bellsworne LLC | <a href="https://bellsworne.com">Bellsworne</a> | <a href="#">Team portal</a></p>
</footer>
</body>
</html>

View File

@ -8,11 +8,18 @@
* {
margin: 0;
padding: 0;
font-family: 'LeagueGothic', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: var(--main-font-color);
letter-spacing: 1px;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'LeagueGothic', sans-serif;
}
h1 {
font-size: 3em;
}
@font-face {
font-family: 'LeagueGothic';
src: url('../fonts/LeagueGothic.ttf');
@ -22,8 +29,83 @@ body {
background-color: var(--main-bg-color);
}
#header-img {
#main-nav {
display: flex;
justify-content: space-between;
align-items: center;
width: 100vw;
height: 10vh;
padding: 20px;
background-color: var(--main-bg-color);
box-sizing: border-box;
font-family: 'LeagueGothic', sans-serif;
font-size: 1.5em;
}
#nav-logo {
flex-shrink: 0;
display: flex;
align-items: center;
height: 100%;
}
#nav-logo img {
max-height: 100%;
width: auto;
}
#main-nav ul {
display: flex;
list-style: none;
}
#main-nav ul li {
margin-left: 10px;
width: 100px;
height: 30px;
background-color: transparent;
text-align: center;
border-radius: 5px;
transition: background-color 0.3s ease-in-out;
}
#main-nav ul li a {
text-decoration: none;
color: var(--main-font-color);
}
#main-nav ul li:hover {
background-color: var(--main-accent-color);
transition: background-color 0.3s ease-in-out;
}
header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 10px;
margin-left: 20vw;
margin-right: 20vw;
width: 60vw;
}
.header-left {
width: 50%;
}
.header-left p {
flex-wrap: wrap;
}
.header-right {
flex-shrink: 0;
display: flex;
justify-content: flex-end;
}
#header-img {
width: 100%;
height: 25vh;
display: flex;
justify-content: center;
@ -39,4 +121,124 @@ body {
#content {
text-align: center;
display: flex;
flex-direction: column;
width: 100vw;
box-sizing: border-box;
}
.content-full-width {
width: 80%;
flex-grow: 1;
align-self: center;
display: flex;
flex-direction: column;
}
.content-full-width h2 {
font-size: 1.8em;
}
.content-full-width > * {
width: 50%;
text-align: left;
align-self: center;
margin-top: 30px;
}
.content-full-width-row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
footer {
display: flex;
justify-content: center;
align-items: center;
height: 10vh;
background-color: var(--main-bg-color);
color: var(--main-font-color);
font-family: 'LeagueGothic', sans-serif;
font-size: 1em;
}
#hamburger-icon {
display: none;
font-size: 2em;
cursor: pointer;
}
/* MOBILE STYLES */
@media (max-width: 768px) {
#hamburger-icon {
display: block;
}
#nav-menu {
display: none !important;
flex-direction: column;
width: 100%;
background-color: black;
}
#nav-menu.show {
display: flex !important;
}
#main-nav {
flex-direction: column;
height: auto;
}
#main-nav ul {
flex-direction: column;
width: 100%;
}
#main-nav ul li {
width: 100%;
margin: 5px 0;
}
#nav-logo {
display: none;
}
header {
flex-direction: column;
margin-left: 5vw;
margin-right: 5vw;
width: 90vw;
}
.header-left, .header-right {
width: 100%;
text-align: center;
}
#header-img {
height: auto;
padding-top: 2vh;
padding-bottom: 2vh;
}
#content {
width: 100vw;
}
.content-full-width {
width: 90%;
}
.content-full-width > * {
width: 90%;
}
footer {
flex-direction: column;
text-align: center;
}
}