Files

86 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-title" content="ChuckCo">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<title>ChuckCo Time Keeper</title>
<style>
:root {
--caution: #f5a623;
--caution-dark: #1a1a1a;
--steel: #2b2f36;
}
* { box-sizing: border-box; }
html, body {
margin: 0;
height: 100%;
background: var(--steel);
overflow: hidden;
}
.tape {
position: fixed;
left: -10%;
width: 120%;
height: 46px;
background: repeating-linear-gradient(
135deg,
var(--caution),
var(--caution) 28px,
var(--caution-dark) 28px,
var(--caution-dark) 56px
);
box-shadow: 0 2px 8px rgba(0,0,0,.35);
opacity: 0.9;
}
.tape.t1 { top: 12%; transform: rotate(-4deg); }
.tape.t2 { top: 46%; transform: rotate(3deg); }
.tape.t3 { bottom: 10%; transform: rotate(-3deg); }
.wrap {
position: relative;
z-index: 2;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.icon {
font-size: 4.5rem;
filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}
.wrap {
flex-direction: column;
gap: 0.75rem;
}
.brand {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-weight: 800;
font-size: 1.5rem;
letter-spacing: 0.5px;
color: #f4f4f4;
text-shadow: 0 2px 6px rgba(0,0,0,.4);
text-align: center;
}
.brand span {
color: var(--caution);
}
</style>
</head>
<body>
<div class="tape t1"></div>
<div class="tape t2"></div>
<div class="tape t3"></div>
<div class="wrap">
<div class="icon">👷</div>
<div class="brand">Chuck<span>Co</span> Time Keeper</div>
</div>
</body>
</html>