Inital commit
This commit is contained in:
11
assets/main.rml
Normal file
11
assets/main.rml
Normal 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
71
assets/styles/main.rcss
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user