| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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;
- }
- action-button {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- }
- action-button > button {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- justify-content: center;
- font-weight: normal;
- font-size: 0.85em;
- box-shadow: 0 0 .6em #aaa;
- }
- action-button > button .icon {
- font-size: 3em;
- }
- dialog {
- border-radius: 1em;
- }
- footer span {
- margin-right: 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;
- }
- footer {
- font-size: small;
- }
- th {
- background-color: #fff;
- }
- section.small {
- border-radius: .4em;
- }
|