* { box-sizing: border-box; -moz-box-sizing: border-box; } html, body { @include display(flex); @include flex(1); -webkit-font-smoothing: antialiased; } html { min-height: 100%; } body { margin: 0; padding: 0; font-family: $fonts; font-weight: 200; font-size: 14px; color: $text-color; } a { color: $link-color; } ol.list { overflow-y: scroll; } h1, h2, h3, h4, h5 { font-weight: 100; } ul, ol { margin: 0; padding: 0; list-style-type: none; li { margin: 1em 0; } } input { border: none; } fieldset { border: none; padding: 0; margin: 0; } input { padding: 4px 8px; font-weight: lighter; outline: none; } button, input[type=submit] { border: 1px solid transparent; background: none; font-family: inherit; font-size: inherit; font-weight: inherit; cursor: pointer; color: inherit; outline: none; } button, input { border-radius: 2px; } main { @include flex(1 100%); @include display(flex); @include flex-direction(column); position: relative; width: 100%; z-index: 1; } .hidden { display: none; } .flash { height: 100%; line-height: 45px; padding: 0 8px; font-size: 1em; text-align: center; background: rgba(160, 207, 194, 0.5); box-shadow: inset 0px 0px 3px 1px rgba(76, 120, 155, 1); color: #FEFEFE; } .button { @include transition(border-color 0.1s, background-color 0.1s, box-shadow 0.2s, color 0.1s); border: 1px solid rgba(black, 0.25); border-radius: 2px; text-decoration: none; padding: 4px 8px; margin: 0 0.5em; font-size: 0.8em; text-transform: uppercase; font-weight: bold; background-color: rgba(white, 0.05); color: lighten($navy-blue, 100%); box-shadow: inset 0 1px 0 0 transparent, 0 0 2px 0 transparent; &.selected { background-color: rgba(black, 0.3); border-color: rgba(black, 0.3); box-shadow: none; } &:hover:not(.selected) { background-color: rgba(white, 0.05); color: white; border-color: rgba(black, 0.3); box-shadow: inset 0 1px 0 0 rgba(white, 0.35), 0 0 2px 0 rgba(black, 0.2); } &:active:not(.selected) { box-shadow: inset 0 1px 2px 0 rgba(black, 0.3), 0 0 2px 0 transparent; background-color: rgba(black, 0.3); } }