archive.css (1779B)
1 /** 2 * This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at https://mozilla.org/MPL/2.0/. 5 */ 6 7 body[is-moz-browser] .other-browser, 8 body:not([is-moz-browser]) .moz-browser { 9 display: none; 10 } 11 12 body { 13 display: flex; 14 flex-direction: column; 15 font: message-box; 16 font-size: 15px; 17 width: 28.5rem; 18 height: 100vh; 19 justify-content: safe center; 20 margin: auto; 21 color: #15141a; 22 } 23 24 img { 25 width: 80px; 26 height: 80px; 27 align-self: center; 28 margin-block-end: 0.75rem; 29 } 30 31 h1 { 32 text-align: center; 33 font-weight: 600; 34 margin-block: 1rem; 35 } 36 37 h2 { 38 font-size: 15px; 39 font-weight: 400; 40 } 41 42 strong { 43 font-weight: 600; 44 } 45 46 a { 47 color: #285ed7; 48 } 49 50 dl { 51 border: 1px solid #cfcfd8; 52 border-radius: 8px; 53 font-size: 14px; 54 margin-block: 0.75rem; 55 padding: 0.5rem 1rem; 56 57 & > * { 58 margin-block: 0.25rem; 59 } 60 } 61 62 dt { 63 font-weight: 600; 64 float: inline-start; 65 clear: inline-start; 66 margin-inline-end: 0.25rem; 67 } 68 69 dd { 70 float: inline-start; 71 margin-inline: 0; 72 } 73 74 #backup-file-path-value { 75 background-color: #f9f9fb; 76 border: 1px solid #cfcfd8; 77 border-radius: 4px; 78 padding: 0.5rem; 79 clear: inline-start; 80 margin-block: 0.5rem; 81 } 82 83 ol { 84 font-size: 17px; 85 font-weight: 600; 86 list-style-position: inside; 87 padding-inline-start: 0; 88 margin-block: 0.75rem; 89 } 90 91 ol > li { 92 margin-block: 1rem; 93 } 94 95 a.button-link { 96 appearance: none; 97 color: #fbfbfe; 98 border: 1px solid transparent; 99 border-radius: 4px; 100 background-color: #0060df; 101 font-size: 13px; 102 margin-inline-start: 0.75rem; 103 padding: 0.5rem 1rem; 104 text-decoration: none; 105 106 &:hover { 107 background-color: #0250bb; 108 109 &:active { 110 background-color: #073072; 111 } 112 } 113 }