Skip to content

Commit

Permalink
Moves CSS and size tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
lukestanley committed Jan 11, 2023
1 parent 99727b5 commit 3122583
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 9 deletions.
70 changes: 66 additions & 4 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
body,
html {
background: black;
}

input {
width: 100%;
height: 1em;
padding: 0px;
font-size: 12px;
font-size: 18px;
border: none;
box-sizing: border-box;
background: black;
color:white;
}

.simple-keyboard {
max-width: 850px;
}

/*
Theme: myTheme1
Expand Down Expand Up @@ -38,3 +42,61 @@ input {
#root .simple-keyboard.myTheme1 + .simple-keyboard-preview {
background: #1c4995;
}



.hg-button {
flex-grow: unset !important;
width: 60px !important;
height: 60px !important;
}


.hg-button-arrowleft,
.hg-button-arrowright,
.hg-button-arrowup,
.hg-button-arrowdown {
background-color: rgba(57, 73, 126, 0.6) !important;
flex-grow: unset !important;
}
.letterButton {
font-size: 142%;
grid-column: col 3 / span 2;
grid-row: row 2;
display: grid;
grid-gap: 0px;
grid-template-columns: 1fr 1fr;
}

.main {
grid-column: 1 / 3;
grid-row: 1;
font-size: 100%;
text-align: center;
}

.left {
grid-column: 1;
grid-row: 2;

color: darkslateblue;
}

.right {
grid-column: 2;
grid-row: 2;

color: rgb(57, 73, 126);
}
.left,
.right {
font-size: 70%;
display: block;
text-align: center;
}

#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
5 changes: 0 additions & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,4 @@ export default {
</script>

<style>
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>

0 comments on commit 3122583

Please sign in to comment.