2021-12-22 09:54:21 -05:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#aboutDialog {
|
|
|
|
border-bottom: #00acff 2px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#grid {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
|
|
height: 250px;
|
|
|
|
min-width: 400px;
|
|
|
|
transform: translateY(calc(50vh - 50%));
|
|
|
|
}
|
|
|
|
|
|
|
|
#left {
|
|
|
|
flex-shrink: 0.5;
|
|
|
|
margin: 25px;
|
2022-04-25 13:01:14 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 10px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logoA, #logoB {
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
margin-bottom: 10px;
|
2021-12-22 09:54:21 -05:00
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2022-04-25 13:01:14 -05:00
|
|
|
transition: opacity 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logoA {
|
|
|
|
position: absolute;
|
|
|
|
margin-bottom: -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logoCreatorA, #logoCreatorB {
|
|
|
|
height: 10px;
|
|
|
|
transition: opacity 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logoCreatorA {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2021-12-22 09:54:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#right {
|
|
|
|
width: 300px;
|
|
|
|
flex-shrink: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wordmark {
|
|
|
|
color: #00acff;
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#version {
|
2022-02-01 10:54:05 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-12-22 09:54:21 -05:00
|
|
|
margin-bottom: 4px;
|
2022-02-01 10:54:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#versionNumber {
|
|
|
|
font-weight: bold;
|
2021-12-22 09:54:21 -05:00
|
|
|
user-select: text;
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
cursor: text;
|
2022-02-01 10:54:05 -05:00
|
|
|
margin-right: 4px;
|
2021-12-22 09:54:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#aboutText {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
2022-02-01 10:54:05 -05:00
|
|
|
|
|
|
|
.loader {
|
|
|
|
width: 0.9em;
|
|
|
|
height: 0.9em;
|
|
|
|
border: 1.5px solid #fff;
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
animation: rotate 0.6s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotate {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|