add a palette

main
Yanick Champoux 2020-07-28 13:26:08 -04:00
parent d09f8e0dc3
commit da31439dea
4 changed files with 19 additions and 1 deletions

BIN
palette Normal file

Binary file not shown.

View File

@ -37,7 +37,7 @@ body {
margin: 0;
padding: 8px;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-family: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
a {
@ -92,3 +92,16 @@ button:not(:disabled):active {
button:focus {
border-color: #666;
}
/* ---- inputs --- */
input, select {
border: 0px;
border-bottom: 1px solid var(--indigo-dye);
}
input:focus, select:focus {
border: 1px solid var(--indigo-dye);;
}

View File

@ -104,6 +104,8 @@
display: grid;
width: 60em;
grid-template-columns: 4fr 1fr 1fr;
margin-left: auto;
margin-right: auto;
}
main :global(> *) {

View File

@ -16,5 +16,8 @@
<style>
label {
font-size: var(--font-scale-8);
font-weight: lighter;
font-family: Dosis;
color: var(--indigo-dye);
}
</style>