| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- header {
- position: fixed;
- width: 100%;
- z-index: 5;
- }
- aside {
- padding-top: 4em;
- z-index: 3; /* Make sure the sidebar is on top of the terminal */
- }
- fieldset {
- display: grid;
- grid-template-columns: repeat(auto-fit, 180px);
- grid-auto-rows: 1fr;
- justify-content: center;
- place-items: stretch;
- }
- main {
- padding-top: 4em;
- }
- dialog {
- border-radius: 1em;
- }
- legend {
- font-weight: bold;
- text-align: center;
- padding: 1em;
- padding-top: 1.5em;
- }
- button.neutral {
- background-color: transparent;
- color: white;
- }
- section {
- padding: 0;
- }
- .display {
- border: 1px solid #666;
- padding: 1em;
- border-radius: .7em;
- box-shadow: 0 0 .6em #aaa;
- text-align: center;
- font-size: small;
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- justify-content: center;
- align-items: center;
- }
- aside .flex-row {
- padding-left: 1em;
- padding-right: .5em;
- }
- #sidebar-toggler-button {
- margin-right: .5em;
- }
- div.buttons button svg {
- vertical-align: middle;
- }
- section.small {
- border-radius: .4em;
- }
|