mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 23:25:04 +01:00
30 lines
380 B
Plaintext
30 lines
380 B
Plaintext
|
<rml>
|
||
|
<head>
|
||
|
<title>Demo</title>
|
||
|
<link type="text/template" href="window.rml" />
|
||
|
<style>
|
||
|
body
|
||
|
{
|
||
|
width: 300dp;
|
||
|
height: 225dp;
|
||
|
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
div#title_bar div#icon
|
||
|
{
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
div#content
|
||
|
{
|
||
|
text-align: left;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body template="window">
|
||
|
This is a sample.<br/>
|
||
|
Wiseguy was here
|
||
|
</body>
|
||
|
</rml>
|