1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/assets/css/_layout.scss
Dan Barber 9681d80183
Use flexbox to render the board
Also minor refactor on the CSS
2018-02-23 14:28:21 -05:00

27 lines
335 B
SCSS

body {
background: $background-color;
color: mix($background-color, $foreground-color, 20%);
}
a {
color: mix($background-color, $link-color, 30%);
}
h1, h2, h3, h4 {
font-variant: small-caps;
font-weight: 300;
}
h1 {
font-size: 2em;
}
.container {
width: 80%;
margin: 0 auto;
}
.form-group {
margin-top: 2em;
}