51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Rückweg</title>
|
|
<style>
|
|
html, body { margin: 0; padding: 0; background: #fff; font-family: system-ui, sans-serif; }
|
|
body { padding: 30px; display: inline-block; }
|
|
.chain { display: flex; flex-direction: column; align-items: center; gap: 0; }
|
|
.step {
|
|
border: 2px solid;
|
|
border-radius: 6px;
|
|
padding: 10px 22px;
|
|
min-width: 280px;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
}
|
|
.server { background: #fed7aa; border-color: #c2410c; color: #7c2d12; }
|
|
.router { background: #fef3c7; border-color: #ca8a04; color: #713f12; }
|
|
.hdm { background: #fde68a; border-color: #b45309; color: #78350f; }
|
|
.laptop { background: #dbeafe; border-color: #1e40af; color: #1e3a8a; }
|
|
.arrow {
|
|
width: 0; height: 0;
|
|
border-left: 10px solid transparent;
|
|
border-right: 10px solid transparent;
|
|
border-top: 14px solid #d63384;
|
|
margin: 5px 0;
|
|
}
|
|
.dots {
|
|
color: #d63384;
|
|
font-style: italic;
|
|
font-size: 0.9rem;
|
|
margin: 2px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="chain">
|
|
<div class="step server">Server</div>
|
|
<div class="arrow"></div>
|
|
<div class="step router">Router → Router → Router</div>
|
|
<div class="dots">jeder Hop: IP gleich · MAC neu</div>
|
|
<div class="arrow"></div>
|
|
<div class="step hdm">Router HdM</div>
|
|
<div class="arrow"></div>
|
|
<div class="step laptop">Ihr Laptop</div>
|
|
</div>
|
|
</body>
|
|
</html>
|