diff --git a/src/App.vue b/src/App.vue index d0972a3..5dc5204 100644 --- a/src/App.vue +++ b/src/App.vue @@ -54,8 +54,25 @@ html, body, #app { font-size: .95em; } +input, button { + font-family: Consolas, Inconsolata, monospace, serif; +} + input { font-size: .95em; + padding: 4px 0; + background: white; + border: 1px solid black; +} + +input[type="file"] { + border: none; +} + +button { + background: white; + border: 1px solid black; + box-shadow: 2px 2px #272727; } #menu-wrap, #canvas-wrap { diff --git a/src/components/Player.vue b/src/components/Player.vue index c9a8433..be038ff 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -2,18 +2,18 @@