towngolf/style.css

34 lines
422 B
CSS
Raw Normal View History

/* i stole the colors from gruvbox */
body {
font-family: mono;
background: #32302f;
color: #f2e5bc;
}
a { color: #83a598 }
#solutions {
display: grid;
align-items: center;
grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
}
.card {
margin: .5em;
background: #504945;
padding: .3em;
}
.card ul {
padding: 0 1em 0 1em;
}
h2 {
margin: 0;
background: #b16286;
}
.hint {float: right}