123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- @font-face {
- font-family: "Prisma";
- src: url(Prisma-MAX.woff2);
- }
- body {
- background: #e6c185;
- font-family: "arial", "sans-serif";
- }
- .mono {
- font-family: "source code pro", "monospace";
- }
- div.title {
- width: 100%;
- white-space: nowrap;
- padding: 1em;
- overflow: hidden;
- }
- div.title svg {
- display: inline;
- vertical-align: middle;
- }
- div.title .logo2 {
- display: inline;
- vertical-align: middle;
- text-align: center;
- margin: 2em;
- font-weight: bold;
- font-style: italic;
- font-size: 25px;
- }
- nav {
- display: flex;
- border-style: solid none solid none;
- border-width: 5px;
- border-color: white;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- align-items: stretch;
- }
- nav * {
- display: flex;
- margin: 0;
- }
- nav a {
- color: black;
- font-weight: 600;
- text-align: center;
- text-decoration: none;
- padding-left: 1.5em;
- padding-right: 1.5em;
- align-items: center;
- }
- nav a:hover {
- background: #af9365;
- }
- nav .pad {
- flex-grow: 1;
- }
- nav .text {
- padding-top: 1em;
- padding-bottom: 1em;
- }
- nav img {
- align-items: center;
- border: 1px solid black;
- object-fit: none;
- }
- form fieldset {
- border: 5px solid white;
- border-radius: 1em;
- margin: 1em;
- padding: 0.5em 1em;
- }
- form fieldset legend {
- font-weight: bold;
- padding: 0.25em;
- background: #af9365;
- }
- form div {
- margin: 0;
- padding: 0.5ch;
- display: flex;
- }
- form label {
- width: 30ch;
- }
- input[type=text], input[type=password] {
- flex: 1;
- }
- input[type=file] {
- font-family: "arial", "sans-serif";
- font-size: 80%;
- }
- select#tzname {
- margin-right: 1px;
- }
- button.show, button.hide {
- width: 6ch;
- padding: 0;
- margin: 0 0 0 1px;
- font-size: 70%;
- }
- button.show .hide {
- display: none;
- }
- button.hide .show {
- display: none;
- }
- button {
- width: 28ch;
- margin: 1em 1ch 1em 1ch;
- padding: 0.25em;
- vertical-align: center;
- font-family: "arial", "sans-serif";
- font-size: 100%;
- }
- progress {
- display: inline-block;
- width: 100%;
- }
- .result {
- display: block;
- border: 2px solid black;
- padding: 0.5ch;
- border-radius: 5px;
- }
- .result.hide {
- display: none;
- }
- .result.ok {
- background: #e0ffe0;
- }
- .result.err {
- background: #ffe0e0;
- }
|