Inital commit

This commit is contained in:
2026-07-11 17:01:42 -05:00
commit 4e0219924d
83 changed files with 70924 additions and 0 deletions

11
assets/main.rml Normal file
View File

@@ -0,0 +1,11 @@
<rml>
<head>
<title>RmlUi Temaplate</title>
<link type="text/rcss" href="styles/main.rcss" />
</head>
<body>
<div class="test">
<p>Test!..</p>
</div>
</body>
</rml>

71
assets/styles/main.rcss Normal file
View File

@@ -0,0 +1,71 @@
* {
font-family: "rmlui-debugger-font";
}
div
{
display: block;
}
p
{
display: block;
}
h1
{
display: block;
}
em
{
font-style: italic;
}
strong
{
font-weight: bold;
}
select
{
text-align: left;
}
tabset tabs
{
display: block;
}
table {
box-sizing: border-box;
display: table;
}
tr {
box-sizing: border-box;
display: table-row;
}
td {
box-sizing: border-box;
display: table-cell;
}
col {
box-sizing: border-box;
display: table-column;
}
colgroup {
display: table-column-group;
}
thead, tbody, tfoot {
display: table-row-group;
}
body {
--main-bg-color: #ffffff;
--text-color: #000000;
width: 100vw;
height: 100vh;
background-color: var(--main-bg-color);
color: var(--text-color);
}