inital commit

This commit is contained in:
2026-01-08 14:59:42 -05:00
commit 571afe6ab9
5 changed files with 103 additions and 0 deletions

34
include/style.lua Normal file
View File

@@ -0,0 +1,34 @@
local M = {}
M.get = function ()
return [[
<style>
.screen {
width: 640px;
height: 600px;
background-image: "/static/bg.jpg";
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.ui {
width: 200px;
height: 300px;
border: 3px solid red;
position: absolute;
bottom: 0;
right: 0;
}
.center {
text-align: center;
}
</style>
]]
end
return M