summaryrefslogtreecommitdiffhomepage
path: root/assets/demo.html
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-07-04 21:16:55 -0400
committerrealtradam <[email protected]>2023-07-04 21:16:55 -0400
commit75055dad88170fc40bd86d36eb2017f8370db06f (patch)
tree83a446fcfa50324cbaa9a7662982a8abe7513096 /assets/demo.html
parentdd23de338c504b18ca1fe572772fd046096607eb (diff)
downloadrodeo_sample_game-rmlui.tar.gz
rodeo_sample_game-rmlui.zip
initial non-working rmlui attemptrmlui
Diffstat (limited to 'assets/demo.html')
-rw-r--r--assets/demo.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/assets/demo.html b/assets/demo.html
new file mode 100644
index 0000000..86903e1
--- /dev/null
+++ b/assets/demo.html
@@ -0,0 +1,71 @@
+<rml>
+<head>
+<title>Example</title>
+<style>
+ body
+ {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ font-family: DigitalDisco;
+ }
+@keyframes animate {
+ 0% {
+ transform: rotateX(0deg);
+ background-color: orange;
+ }
+ 10% {
+ transform: rotateX(0deg);
+ background-color: orange;
+ }
+ 50% {
+ transform: rotateX(-30deg);
+ background-color: blue;
+ }
+ 90% {
+ transform: rotateX(0deg);
+ background-color: orange;
+ }
+ 100% {
+ transform: rotateX(0deg);
+ background-color: orange;
+ }
+}
+ div
+ {
+ font-family: DigitalDisco;
+ display: block;
+ background-color: #f00;
+ font-size: 16px;
+ border: 1px;
+ border-radius: 30px;
+ border-color: red;
+ }
+ p
+ {
+ font-family: DigitalDisco;
+ color: #fff;
+ font-size: 16px;
+ }
+ button {
+ font-size: 16px;
+ font-family: DigitalDisco;
+ color: black;
+ background-color: orange;
+ }
+ button:hover {background-color: #3e8e41}
+ button:active {background-color: #41ff41}
+</style>
+<!-- animation: 2s linear infinite animate; -->
+</head>
+<body>
+ <div>
+ <button>
+ Play
+ </button>
+ <button id="reset">
+ Reset
+ </button>
+ </div>
+</body>
+</rml>