diff options
| author | realtradam <[email protected]> | 2023-07-04 21:16:55 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-07-04 21:16:55 -0400 |
| commit | 75055dad88170fc40bd86d36eb2017f8370db06f (patch) | |
| tree | 83a446fcfa50324cbaa9a7662982a8abe7513096 /assets | |
| parent | dd23de338c504b18ca1fe572772fd046096607eb (diff) | |
| download | rodeo_sample_game-rmlui.tar.gz rodeo_sample_game-rmlui.zip | |
initial non-working rmlui attemptrmlui
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/DigitalDisco.ttf | bin | 0 -> 44088 bytes | |||
| -rw-r--r-- | assets/demo.html | 71 |
2 files changed, 71 insertions, 0 deletions
diff --git a/assets/DigitalDisco.ttf b/assets/DigitalDisco.ttf Binary files differnew file mode 100644 index 0000000..303cf6c --- /dev/null +++ b/assets/DigitalDisco.ttf 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> |
