timhaley94/holdem

View on GitHub
client/src/components/App/index.css

Summary

Maintainability
Test Coverage
html, body, #root {
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

*::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}

h1, h2, h3, h4, h5, h6 {
  color: #393939;
  font-size: 24px;
  font-family: 'Roboto', serif;
  font-weight: 400;
  margin: 16px 0;
}

p, a, input, th, td, input {
  color: #707070;
  font-size: 11px;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}