html {
    box-sizing: border-box;
    font-size: 10px;
  }
  
  body {
    font-size: 1.6rem;
    margin: 0;
    min-height: 100vh;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  
  ul {
    list-style: none;
    padding-left: 0;
  }
  
  ul.typographic {
    list-style: initial;
    padding-inline-start: 20px;
  }
  
  /* For 'accessibility text'.  */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .sr-only-focusable:active,
  .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }


/* My CSS */

h2 {
  padding: 15px 0px;
}
.title {
  font-weight: bold;
}
.book-item:hover {
  background-color:#eee;
}
.controls {
  padding: 5px 0px;
}
.page-header span {
  font-size: 2rem;
  margin-left: 15px;
}
.title,
.author,
.location, 
.genre, 
.rating {
  margin-left: 15px; 
}
.navbar {
  display: flex;
  justify-content: space-between;
}
.navbar-nav {
  flex-direction: row;
}
.nav-right {
  display: flex;
}
.nav-item {
  display: inline;
}
.navbar-nav .nav-link {
  padding-right: 10px;
}
#edit-form {
  border: 1px solid rgba(0,0,0,.125);
}
#reading-list-mount {
  border: 1px dashed rgba(0,0,0,.125);
  min-height: 150px;
}
.tweet {
  border: 1px solid rgba(0,0,0,.125);
}

[data-inline-tweet] a {   text-decoration: none;   color: #000; } [data-inline-tweet] a span {   border-bottom: 1px dotted rgb(0,172,237);   font-style: italic;   margin-right: 10px; } [data-inline-tweet] a:hover span {   background-color: rgba(0,172,237,0.1);   color: rgb(0,172,237); }

