profile-selector.css (997B)
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 body { 6 display: flex; 7 justify-content: center; 8 } 9 10 profile-selector { 11 display: inline-flex; 12 flex-direction: column; 13 align-items: center; 14 padding: 8%; 15 padding-bottom: 0; 16 } 17 18 .logo { 19 width: 64px; 20 height: 64px; 21 } 22 23 .profiles-body-text { 24 width: 70%; 25 text-align: center; 26 font-size: var(--font-size-large); 27 } 28 29 .profile-list { 30 width: 100%; 31 max-height: 400px; 32 min-width: 426px; 33 overflow: auto; 34 margin: var(--space-xxlarge) 0; 35 display: flex; 36 flex-wrap: wrap; 37 gap: var(--space-xxlarge); 38 padding: 4px; 39 } 40 41 moz-checkbox { 42 margin-block-start: 40px; 43 } 44 45 moz-checkbox span[hidden] { 46 visibility: hidden; 47 } 48 49 h1[data-l10n-id="profile-window-heading"] { 50 font-size: calc(2 * var(--font-size-large)); 51 margin-block-start: var(--space-medium); 52 margin-block-end: 0; 53 }