23 lines
569 B
HTML
23 lines
569 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body{
|
|
background-color: #202020;
|
|
color:white;
|
|
}
|
|
.report-content{
|
|
display:block;
|
|
border-radius: 1em;
|
|
border: 0.125em solid white;
|
|
padding: 0.25em 0.5em;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="report-content">sample report</div>
|
|
<div class="report-content">sample report</div>
|
|
</body>
|
|
</html> |