-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b719fc7
Showing
11 changed files
with
389 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a1200.5ht.co |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 © KS GROUP. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> | ||
|