Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Dec 18, 2024
0 parents commit b719fc7
Show file tree
Hide file tree
Showing 11 changed files with 389 additions and 0 deletions.
Binary file added A1200-CLONE.zip
Binary file not shown.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a1200.5ht.co
Binary file added ReAmiga1200.zip
Binary file not shown.
Binary file added ReAmiga1200Rev11.zip
Binary file not shown.
Binary file added ReAmiga1200Rev12.zip
Binary file not shown.
Binary file added ReAmiga1200Rev14.zip
Binary file not shown.
Binary file added ReAmiga1200Rev141.zip
Binary file not shown.
Binary file added ReAmiga1200Rev15.zip
Binary file not shown.
Binary file added assets/A1200BigTop.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
188 changes: 188 additions & 0 deletions assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
200 changes: 200 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A1200</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
color: #333;
line-height: 1.6;
}

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

header {
background: linear-gradient(135deg, #004540, #F06347);
color: #fff;
padding: 20px 0;
}

header nav {
display: flex;
justify-content: space-between;
align-items: center;
}

header nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
font-weight: bold;
}

header nav a:hover {
text-decoration: underline;
}

.hero {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 40px 0;
}

.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}

p {
font-size: 1.2rem;
margin-bottom: 20px;
}

.hero button {
background: #ff4500;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
}

.hero button:hover {
background: #e03e00;
}

.hero img {
max-width: 100%;
height: auto;
}

section {
padding: 40px 0;
}

h2 {
margin-bottom: 20px;
}

.features {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.feature {
flex: 1 1 30%;
margin: 10px;
text-align: center;
padding: 20px;
border: 1px solid #ddd;
border-radius: 10px;
}

.specs {
margin-top: 20px;
width: 100%;
border-spacing: 0;
border-collapse: separate;
}

.specs th, .specs td {
padding: 12px 15px;
text-align: left;
}

.specs th {
background-color: #f9f9f9;
border-bottom: 2px solid #e5e5e5;
font-weight: bold;
}

.specs td {
border-bottom: 1px solid #e5e5e5;
color: #555;
}

.specs tr:nth-child(even) td {
background-color: #fafafa;
}

.specs tr:hover td {
background-color: #f1f1f1;
}

footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}

footer a {
color: #ff6347;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="assets/logo.svg" height=70 alt="Product Image">
</div>
<div class="nav-links">
<a href="#rev">Ревізії</a>
<a href="#spec">Специфікація</a>
<a href="#doc">Документація</a>
<a href="#contact">Код</a>
</div>
</nav>
<div class="hero">
<div class="hero-text">
<h1>ReAmiga A1200 Rev 1.5</h1>
<p>352.50 x 180.92 mm</p>
<button onclick="location.href='https://github.com/5ht/zx'" type="button">Github</button>
</div>
<div class="hero-image">
<img width=300 src="assets/A1200BigTop.jpg" style="padding: 10px 10px 10px 10px;background-color:#EEEEEE;">
</div>
</div>
</div>
</header>

<main>
<section id="specifications" class="container">
<h2><a name="spec">Специфікація</a></h2>
<table class="specs">
<tr>
<th>Процесор:</th>
<td>Motorola 68020.</td>
</tr>
</table>
</section>
</main>
<footer>
<p> 2024 &copy; KS GROUP. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit b719fc7

Please sign in to comment.