_meta/on screen note/note.html
2024-06-20 01:10:39 -04:00

35 lines
581 B
HTML

<html>
<head>
<style type="text/css">
body{
background-color: #00FF00;
padding:0;
margin:0;
}
.note{
color: #DEDEDE;
font-size: 3em;
background-color: #333333;
border: 5px solid #666;
border-radius: 0.5em;
display:inline-flex;
flex-flow: row nowrap;
position: absolute;
bottom: 0.25em;
left: 0.25em;
}
.text{
padding: 0.25em 1em 0.25em 0.25em;
}
</style>
</head>
<body>
<div style="width:3840; height:2160; margin:0">
<div class="note">
<div class="text">
src: i was there
</div>
</div>
</div>
</body>
</html>