base.less

58 lines | 705 B Blame History Raw Download
@open-sans: "Open Sans",sans-serif;

* {
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: @open-sans;
}

body {
  height: 100%;
  width: 100%;
  font-family: @open-sans;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: "Overpass", sans-serif;
}

a {
  color: #0099d3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Styles from Gabriel */

strong {
    font-weight: bold;
}

.hidden {
    display: none;
}

.pull-right {
    float: right;
}

.block {
    display: block;
}

a:focus {
    outline: 0 none;
}

.clear-font-size {
    font-size: 1em;
}