2022-06-03 22:30:39 +00:00
|
|
|
body {
|
|
|
|
margin: 16px 0;
|
|
|
|
font-size: 14px;
|
|
|
|
background-color: #c4c1a0; /* Pantone 453 */
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.full-page) {
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
2022-06-22 03:34:19 +00:00
|
|
|
button,
|
|
|
|
a[role="button"],
|
|
|
|
input[type="file"]::file-selector-button {
|
2022-06-03 22:30:39 +00:00
|
|
|
background: #44372C;
|
|
|
|
color: #fff;
|
|
|
|
padding: 2px 8px;
|
|
|
|
border: 1px outset #66594E;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 15px;
|
2022-06-04 18:07:40 +00:00
|
|
|
min-width: 75px;
|
2022-06-03 22:30:39 +00:00
|
|
|
}
|
|
|
|
|
2022-06-22 03:34:19 +00:00
|
|
|
button:hover,
|
|
|
|
a[role="button"]:hover,
|
|
|
|
input[type="file"]::file-selector-button {
|
2022-06-03 22:30:39 +00:00
|
|
|
background-color: #55473D;
|
|
|
|
border: 1px outset #66594E;
|
|
|
|
}
|
|
|
|
|
2022-06-22 03:34:19 +00:00
|
|
|
button:active,
|
|
|
|
a[role="button"]:active,
|
|
|
|
input[type="file"]::file-selector-button {
|
2022-06-03 22:30:39 +00:00
|
|
|
background-color: #22150A;
|
|
|
|
border: 1px outset #44372C;
|
|
|
|
}
|
|
|
|
|
2022-06-22 03:34:19 +00:00
|
|
|
button:focus,
|
|
|
|
a[role="button"]:focus,
|
|
|
|
input[type="file"]::file-selector-button {
|
2022-06-03 22:30:39 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
2022-06-09 19:22:59 +00:00
|
|
|
|
|
|
|
a[role="button"] {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-06-20 02:42:34 +00:00
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|