
/* this is for the login page only */

@import url("roboto300.css");
@import url("tabs.css");
@import url("login.css");
@import url("runs.css");
@import url("nav.css");
@import url("columns.css");

* {
  box-sizing: border-box;
}

body {
  background: #76b852; /* fallback for old browsers */
  background: -webkit-linear-gradient(right, beige, darkcyan);
  background: -moz-linear-gradient(right, beige, darkcyan);
  background: -o-linear-gradient(right, beige, darkcyan);
  background: linear-gradient(to left, beige, darkcyan);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0px;
}

.content {
  margin: 0px 10px 0px 10px;
}

