Added ButtonTheme/ButtonAttributes demo

This commit is contained in:
Francisco Hodge
2019-08-11 20:23:42 -04:00
parent f158a603c9
commit 74bb07d46a
3 changed files with 176 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
input {
width: 100%;
height: 100px;
padding: 20px;
font-size: 20px;
border: none;
box-sizing: border-box;
}
.simple-keyboard {
max-width: 850px;
}
.simple-keyboard.my-theme .hg-button.my-button {
background: blue;
color: white;
}
.simple-keyboard.my-theme .hg-button[aria-label] {
background: black;
color: white;
}
.simple-keyboard.my-theme .hg-button.my-button-outline {
border: 2px solid red;
}