Files
uni/slides/223015c/assets/demos/port-highlight.html

58 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Port-Highlight</title>
<style>
html, body { margin: 0; padding: 0; background: #fff; font-family: system-ui, sans-serif; }
body { padding: 28px 40px; display: inline-block; }
.line {
font-family: ui-monospace, "SF Mono", monospace;
font-size: 2.2rem;
color: #1a1a2e;
display: flex;
align-items: center;
}
.port-wrap {
display: inline-flex;
flex-direction: column;
align-items: center;
margin-left: 4px;
}
.port {
background: #fde68a;
color: #7c2d12;
padding: 2px 10px;
border-radius: 4px;
font-weight: 700;
}
.connector {
width: 2px;
height: 18px;
background: #c2410c;
margin-top: 4px;
}
.caption-text {
background: #fed7aa;
padding: 6px 12px;
border-radius: 4px;
border: 2px solid #c2410c;
color: #7c2d12;
font-weight: 600;
font-size: 1rem;
font-family: system-ui, sans-serif;
margin-top: 2px;
}
</style>
</head>
<body>
<div class="line">
212.132.79.37:<div class="port-wrap">
<span class="port">443</span>
<div class="connector"></div>
<div class="caption-text">Port 443 = HTTPS</div>
</div>
</div>
</body>
</html>