merge built-in themes into one repo

This commit is contained in:
2024-01-17 08:29:59 -06:00
parent 45da77f20d
commit 74b6c89232
727 changed files with 6972 additions and 159 deletions

26
core/buttontest.html Normal file
View File

@@ -0,0 +1,26 @@
<html>
<head>
<style>
button {
background: url('main-button.svg');
background-repeat: no-repeat;
background-size: 100% 100%;
border: none;
margin: 2px;
}
path { stroke-width: 2; }
.btn1 { width: 50px; height: 50px; }
.btn2 { width: 100px; height: 50px; }
.btn3 { width: 150px; height: 100px; }
.btn4 { width: 100px; height: 200px; }
.btn5 { width: 50px; height: 150px; }
</style>
</head>
<body>
<button class='btn1'>Button 1</button>
<button class='btn2'>Button 2</button><br>
<button class='btn3'>Button 3</button><br>
<button class='btn4'>Button 4</button>
<button class='btn5'>Button 5</button><br>
</body>
</html>