mutate-a-word/css/theme.css

33 lines
515 B
CSS

:root {
--bg: #bff4fb;
--accent: #333333;
--accent-dark: #777777;
/* --bg: #038de8;
--accent: #e87e04;
--accent-dark: #d55400; */
}
html, body { font-size: 100%; }
body, input[type=text] {
font-family: "Ubuntu", sans-serif;
text-align: center;
font-size: 150%;
background: var(--bg);
color: var(--accent);
}
input[type=text] {
border: 0;
border-bottom: 0.2em solid var(--accent-dark);
}
.mutation-step {
display: flex;
justify-content: space-evenly;
}
.mutation-option {
cursor: pointer;
}