123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- @import url("common.css");
- body {
- display: flex;
- box-sizing: padding-box;
- min-height: 100vh;
- padding: 0 48px;
- align-items: center;
- justify-content: center;
- }
- ul, ol {
- margin: 0;
- padding: 0;
- -webkit-margin-start: 1em;
- }
- ul > li, ol > li {
- margin-bottom: .5em;
- }
- ul {
- list-style: disc;
- }
- #errorPageContainer {
- position: relative;
- min-width: 320px;
- max-width: 512px;
- }
- #errorTitleText {
- background: url("aboutNetError_info.svg") left 0 no-repeat;
- background-size: 1.2em;
- -webkit-margin-start: -2em;
- -webkit-padding-start: 2em;
- }
- #errorTitleText:-webkit-dir(rtl) {
- background-position: right 0;
- }
- #errorTitleText[sslv3=true] {
- background-image: url("aboutNetError_alert.svg");
- }
- #errorTryAgain {
- margin-top: 1.2em;
- min-width: 150px
- }
- #errorContainer {
- display: none;
- }
- @media (max-width: 675px) {
- #errorTitleText {
- padding-top: 0;
- background-image: none;
- -webkit-padding-start: 0;
- -webkit-margin-start: 0;
- }
- }
- /* Pressing the retry button will cause the cursor to flicker from a pointer to
- * not-allowed. Override the disabled cursor behaviour since we will never show
- * the button disabled as the initial state. */
- button:disabled {
- cursor: pointer;
- }
- div#certificateErrorReporting {
- display: none;
- float: right;
- /* Align with the "Try Again" button */
- margin-top: 24px;
- -webkit-margin-end: 24px;
- }
- div#certificateErrorReporting a {
- text-decoration: none;
- }
- div#certificateErrorReporting a:hover {
- text-decoration: underline;
- }
- span.downArrow {
- display: inline-block;
- vertical-align: middle;
- font-size: 0.6em;
- -webkit-margin-start: 0.5em;
- transform: scaleY(0.7);
- }
- div#certificateErrorReportingPanel {
- /* Hidden until the link is clicked */
- display: none;
- background-color: white;
- 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 12px 12px;
- box-shadow: 0 0 4px #ddd;
- font-size: 0.9em;
- position: absolute;
- width: 75%;
- margin-top: 10px;
- }
- div#certificateErrorReportingPanel:-webkit-dir(ltr) {
- left: 34%;
- }
- div#certificateErrorReportingPanel:-webkit-dir(rtl) {
- right: 0;
- }
- #errorStatePanel {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-between;
- align-content: space-between;
- align-items: flex-start;
- }
- span#hostname {
- font-weight: bold;
- }
- #automaticallyReportInFuture {
- cursor: pointer;
- }
|