mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
46 lines
848 B
HTML
46 lines
848 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Roboto Mono', monospace;
|
|
}
|
|
|
|
.middle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.display {
|
|
text-align: center;
|
|
font-size: clamp(22px, 3vw, 60px);
|
|
}
|
|
.fn {
|
|
color:#2b6cb0;
|
|
}
|
|
.string {
|
|
color:#219321
|
|
}
|
|
</style>
|
|
<title>pocketlang</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="middle">
|
|
<div class="display">
|
|
<span class="fn">print</span>(<span class="string">'Page under construction'</span>)
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |