PageSwitcher.css (1064B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 /* 6 * Page container for worker + manifest views 7 */ 8 9 .app-page { 10 padding: calc(var(--base-unit) * 3) calc(var(--base-unit) * 8); 11 user-select: none; 12 overflow-y: auto; 13 } 14 15 .app-page--empty { 16 display: grid; 17 align-items: center; 18 justify-content: center; 19 font-size: var(--body-10-font-size); 20 color: var(--theme-toolbar-color); 21 } 22 23 .app-page__title { 24 font-size: var(--title-20-font-size); 25 font-weight: var(--title-20-font-weight); 26 margin: 0; 27 } 28 29 .app-page__icon-container { 30 display: grid; 31 grid-template-columns: auto 1fr; 32 grid-column-gap: calc(var(--base-unit) * 4); 33 } 34 35 .app-page__icon { 36 width: calc(var(--base-unit) * 10); 37 height: calc(var(--base-unit) * 10); 38 39 fill: var(--dimmed-icon-color); 40 -moz-context-properties: fill; 41 42 /* alignment fix for text to compensate for low baseline */ 43 margin-block-start: var(--base-unit); 44 }