40 lines
887 B
HTML
40 lines
887 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{title}}</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
body {
|
|
background-color: #212121;
|
|
color: #eeeeee;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
font-size: 28px;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-weight: lighter;
|
|
gap: 10px;
|
|
}
|
|
|
|
div.border {
|
|
width: 3px;
|
|
height: 30px;
|
|
background-color: #eeeeee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span>{{code}}</span>
|
|
<div class="border"></div>
|
|
<span>{{description}}</span>
|
|
</body>
|
|
</html>
|