mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 07:31:32 +00:00
113 lines
2.3 KiB
CSS
113 lines
2.3 KiB
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
@import url("chrome://global/skin/in-content/common.css");
|
|
|
|
body {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
min-height: 100vh;
|
|
padding: 0 48px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#errorPageContainer {
|
|
position: relative;
|
|
min-width: 320px;
|
|
max-width: 512px;
|
|
}
|
|
|
|
#errorTitle {
|
|
background: url("chrome://browser/skin/cert-error.svg") left 0 no-repeat;
|
|
background-size: 3em;
|
|
margin-inline-start: -5em;
|
|
padding-inline-start: 5em;
|
|
}
|
|
|
|
#errorTitle:-moz-dir(rtl) {
|
|
background-position: right 0;
|
|
}
|
|
|
|
#errorTitleText {
|
|
border-bottom: 1px solid #C1C1C1;
|
|
padding-bottom: 0.4em;
|
|
}
|
|
|
|
@media (max-width: 675px) {
|
|
#errorTitle {
|
|
padding-top: 0;
|
|
background-image: none;
|
|
margin-inline-start: 0;
|
|
padding-inline-start: 0;
|
|
}
|
|
}
|
|
|
|
#buttonContainer {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
#buttonSpacer {
|
|
flex: 1;
|
|
}
|
|
|
|
#certificateErrorDebugInformation {
|
|
display: none;
|
|
background-color: var(--in-content-box-background-hover) !important;
|
|
border-top: 1px solid var(--in-content-border-color);
|
|
position: absolute;
|
|
left: 0%;
|
|
top: 100%;
|
|
width: 65%;
|
|
padding: 1em 17.5%;
|
|
}
|
|
|
|
#certificateErrorText {
|
|
font-family: monospace;
|
|
white-space: pre-wrap;
|
|
padding: 1em 0;
|
|
}
|
|
|
|
#errorCode {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#returnButton {
|
|
background-color: var(--in-content-primary-button-background);
|
|
border: none;
|
|
color: var(--in-content-selected-text);
|
|
min-width: 250px;
|
|
margin-inline-start: 0;
|
|
}
|
|
|
|
#returnButton:hover {
|
|
background-color: var(--in-content-primary-button-background-hover) !important;
|
|
}
|
|
|
|
#returnButton:hover:active {
|
|
background-color: var(--in-content-primary-button-background-active) !important;
|
|
}
|
|
|
|
#advancedButton {
|
|
min-width: 150px;
|
|
}
|
|
|
|
/* Advanced section is hidden via inline styles until the link is clicked */
|
|
#advancedPanel {
|
|
background-color: white;
|
|
color: var(--in-content-text-color);
|
|
border: 1px lightgray solid;
|
|
/* Don't use top padding because the default p style has top padding, and it
|
|
* makes the overall div look uneven */
|
|
padding: 0 12px 10px;
|
|
margin-top: 10px;
|
|
box-shadow: 0 0 4px #ddd;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.hostname {
|
|
font-weight: bold;
|
|
}
|