Initial design

main
oabrivard 2 years ago
parent 8913645ecc
commit 79e0cc9ba1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 663 B

@ -0,0 +1,163 @@
/* General Body Styling */
body {
font-family: 'Arial', sans-serif;
margin: 0 auto;
max-width: 1581px;
padding: 0;
background-color: #f4f4f4; /* Light grey background */
}
/* Container */
.container {
width: 100%;
margin: auto;
overflow: hidden;
}
/* Header */
.header {
background: #121E2A;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #f4f4f4 3px solid;
}
.header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
/* logo */
.logo {
float: left;
display: block;
text-align: center;
margin-top: -30px;
}
/* Navigation Menu */
.menu {
float: right;
margin-top: 10px;
margin-right: 10px;
}
.menu ul {
list-style: none;
margin: 0;
padding: 0;
}
.menu ul li {
display: inline;
margin-left: 35px;
}
/* Banner */
.banner {
position: relative;
background: #121E2A no-repeat center center;
background-size: contain;
}
.banner img {
max-width: 100%; /* Make the image responsive */
height: auto; /* Maintain aspect ratio */
display: block; /* Remove default inline behavior */
margin: auto; /* Center the image in its container */
}
/* Main Content */
.main {
padding: 20px;
background: #fff;
}
.main h1 {
color: #333;
}
/* Footer */
.footer {
background: #121E2A;
color: #fff;
text-align: center;
padding: 30px 0;
overflow: hidden; /* Clear the float */
}
.footer-left {
float: left;
padding-left: 10px;
padding-right: 10px;
}
.footer-right {
float: right;
padding-left: 10px;
padding-right: 10px;
}
.footer ul {
list-style: none;
padding-inline-start: 0px;
}
.footer ul li {
display: inline;
margin-left: 15px;
}
.footer ul li a {
color: #fff;
}
/* Media Queries */
@media (max-width: 768px) {
.menu {
margin-right: 0px;
}
.menu ul {
padding: 0;
background-color: #333;
text-align: center;
}
.menu ul li {
display: block; /* Stack the menu items vertically */
margin: 0; /* Remove margin */
}
.menu ul li a {
display: block; /* Block level links take up the full width of their container */
padding: 10px; /* Add padding for touch targets */
}
.container {
width: 100%;
}
.header, .footer {
text-align: center;
}
.footer-left, .footer-right {
float: none;
width: 100%;
margin: auto;
padding-left: 0px;
padding-right: 0px;
}
}
@media (max-width: 480px) {
.menu ul li {
padding: 5px; /* Adjust padding for smaller screens */
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

@ -0,0 +1,49 @@
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="CelticInfo company's website">
<meta name="keywords" content="CelticInfo">
<meta name="author" content="CelticInfo">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CelticInfo</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="header">
<!-- logo -->
<div class="logo">
<img src="images/celticinfo_logo_transparent_small.png" alt="CelticInfo">
</div>
<!-- menu -->
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="banner">
<img src="images/celticinfo_banner.png" alt="CelticInfo">
</div>
<div class="footer">
<div class="footer-left">
<p>
&copy; 2023 CelticInfo. All rights reserved.
</p>
</div>
<div class="footer-right">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
Loading…
Cancel
Save