/*
Theme Name:  Vue.wordpress
Author:      Brandon Shiluk
Author URI:  https://github.com/bucky355
Description: Takes a hybrid approach, using Wordpress to manage and serve initial content. Vue.js takes over all future in-site navigation effectively transforming the site into a SPA.
Version:     1.0.0
Text Domain: vue-wordpress
*/


/* Base Styles
------------------------------------- */
  
body {
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,Cantarell, "Helvetica Neue", sans-serif;
  color: #444;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 100vh;
  overflow: hidden;
}

/* .container {
  width: 100%;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  box-sizing: border-box;
} */

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2rem;
}

button:disabled,
button[disabled]{
  background: #cccccc;
  color: #666666;
}

/* Fucking vuetify cause bootstrap */
.row {
  margin: 0;
}
.col {
  padding: 0;
}

/* Vuetify default */
.v-slider__thumb {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

textarea {
  overflow: auto;
  resize: vertical;
}

.justify-space-between {
  justify-content: space-between !important;
}
