Initial commit
This commit is contained in:
commit
05c65aad4d
155 changed files with 93617 additions and 0 deletions
1
viewer/css/Toast.min.css
vendored
Normal file
1
viewer/css/Toast.min.css
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.toastjs-container{position:absolute;position:fixed;bottom:30px;left:30px;width:calc(100% - 60px);max-width:400px;transform:translateX(-150%);transition:transform 1s;z-index:100}.toastjs-container[aria-hidden=false]{transform:translateX(0)}.toastjs{background:#fff;padding:10px 15px 0;border-left-style:solid;border-left-width:5px;border-radius:4px;box-shadow:0 2px 5px 0 rgba(0,0,0,.2)}.toastjs.default{border-left-color:#AAA}.toastjs.success{border-left-color:#2ECC40}.toastjs.warning{border-left-color:#FF851B}.toastjs.danger{border-left-color:#FF4136}.toastjs-btn{background:#f0f0f0;padding:5px 10px;border:0;border-radius:4px;font-family:'Source Sans Pro',sans-serif;font-size:14px;display:inline-block;margin-right:10px;margin-bottom:10px;cursor:pointer}.toastjs-btn--custom{background:#323232;color:#fff}.toastjs-btn:focus,.toastjs-btn:hover{outline:0;box-shadow:0 2px 5px 0 rgba(0,0,0,.2)}
|
||||
1263
viewer/css/editor-toolbar.css
Normal file
1263
viewer/css/editor-toolbar.css
Normal file
File diff suppressed because it is too large
Load diff
226
viewer/css/embed-configurator.css
Normal file
226
viewer/css/embed-configurator.css
Normal file
|
|
@ -0,0 +1,226 @@
|
|||
#embedConfiguratorPanel[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#embedConfiguratorPanel {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 1%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 119;
|
||||
width: min(980px, calc(100vw - 36px));
|
||||
max-height: min(72vh, 760px);
|
||||
overflow: auto;
|
||||
padding: 12px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--viewer-panel-border);
|
||||
background: var(--viewer-panel-embed-bg);
|
||||
color: var(--viewer-panel-text);
|
||||
box-shadow: var(--viewer-panel-shadow);
|
||||
font-size: 13px;
|
||||
line-height: 1.35;
|
||||
z-index: 99999;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Lucida Grande",
|
||||
"Segoe UI", Roboto, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.embed-config-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.embed-config-header button {
|
||||
border: 1px solid var(--viewer-panel-border);
|
||||
border-radius: 6px;
|
||||
background: var(--viewer-panel-bg);
|
||||
color: var(--viewer-panel-text);
|
||||
font: inherit;
|
||||
padding: 4px 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.embed-config-header button:hover {
|
||||
background: var(--viewer-panel-bg-hover);
|
||||
}
|
||||
|
||||
.embed-config-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 8px;
|
||||
color: var(--viewer-panel-text);
|
||||
}
|
||||
|
||||
.embed-config-layout {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.8fr);
|
||||
gap: 12px;
|
||||
align-items: stretch;
|
||||
color: var(--viewer-panel-text);
|
||||
}
|
||||
|
||||
.embed-config-main {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.embed-config-grid label,
|
||||
.embed-config-field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
font-weight: 600;
|
||||
color: color-mix(
|
||||
in srgb,
|
||||
var(--viewer-panel-bg) 10%,
|
||||
var(--viewer-panel-text)
|
||||
);
|
||||
}
|
||||
|
||||
.embed-config-grid input,
|
||||
.embed-config-grid select,
|
||||
.embed-config-field textarea,
|
||||
.embed-config-actions button {
|
||||
border: 1px solid var(--viewer-panel-border);
|
||||
border-radius: 6px;
|
||||
background: var(--viewer-panel-bg);
|
||||
color: var(--viewer-panel-text);
|
||||
font: inherit;
|
||||
padding: 6px 8px;
|
||||
}
|
||||
|
||||
.embed-config-grid input.embed-input-invalid,
|
||||
.embed-config-grid select.embed-input-invalid {
|
||||
border-color: #d54646;
|
||||
box-shadow: 0 0 0 1px rgba(213, 70, 70, 0.25);
|
||||
}
|
||||
|
||||
.embed-config-grid input,
|
||||
.embed-config-grid select {
|
||||
min-width: 0;
|
||||
color: var(--viewer-panel-text);
|
||||
}
|
||||
|
||||
.embed-config-checks {
|
||||
margin-top: 8px;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.embed-config-checks label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-weight: 600;
|
||||
color: color-mix(
|
||||
in srgb,
|
||||
var(--viewer-panel-bg) 10%,
|
||||
var(--viewer-panel-text)
|
||||
);
|
||||
}
|
||||
|
||||
.embed-config-actions {
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.embed-config-actions button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.embed-config-actions button:hover {
|
||||
background: var(--viewer-panel-bg-hover);
|
||||
}
|
||||
|
||||
.embed-config-field {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.embed-config-field textarea {
|
||||
width: 100%;
|
||||
min-height: 96px;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
#embedIframeOutput {
|
||||
min-height: 140px;
|
||||
}
|
||||
|
||||
.embed-config-preview-wrap {
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
#embedPreviewFrame {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 520px;
|
||||
flex: 1 0 520px;
|
||||
border: 1px solid var(--viewer-panel-border);
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.embed-config-preview-side {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
font-weight: 700;
|
||||
min-height: 100%;
|
||||
padding-left: 10px;
|
||||
padding-right: 6px;
|
||||
align-self: stretch;
|
||||
overflow-y: auto;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
.fullscreen-icon {
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.9'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 3H5a2 2 0 0 0-2 2v3m16 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M8 21H5a2 2 0 0 1-2-2v-3'/%3E%3C/svg%3E");
|
||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.9'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 3H5a2 2 0 0 0-2 2v3m16 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M8 21H5a2 2 0 0 1-2-2v-3'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.fullscreen-exit-icon {
|
||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.9'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 3H5a2 2 0 0 0-2 2v4m14-6h2a2 2 0 0 1 2 2v4m-6 12h4a2 2 0 0 0 2-2v-4m-18 0v4a2 2 0 0 0 2 2h4M9 9 3 3m12 6 6-6M9 15l-6 6m12-6 6 6'/%3E%3C/svg%3E");
|
||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='1.9'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 3H5a2 2 0 0 0-2 2v4m14-6h2a2 2 0 0 1 2 2v4m-6 12h4a2 2 0 0 0 2-2v-4m-18 0v4a2 2 0 0 0 2 2h4M9 9 3 3m12 6 6-6M9 15l-6 6m12-6 6 6'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.viewer-embed-page #metadata-container {
|
||||
top: 0 !important;
|
||||
}
|
||||
|
||||
.viewer-embed-page #metadata-card {
|
||||
max-width: min(320px, 42vw);
|
||||
width: min(188px, 24vw);
|
||||
}
|
||||
|
||||
.viewer-embed-page #metadata-card.metadata-open {
|
||||
width: min(320px, 42vw);
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.embed-config-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.embed-config-preview-side {
|
||||
position: static;
|
||||
min-height: 260px;
|
||||
overflow: visible;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.embed-config-grid,
|
||||
.embed-config-checks {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
335
viewer/css/external-sources.css
Normal file
335
viewer/css/external-sources.css
Normal file
|
|
@ -0,0 +1,335 @@
|
|||
#form-manifesto {
|
||||
position: fixed;
|
||||
bottom: 12px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: min(640px, 95vw);
|
||||
|
||||
background: rgba(250, 247, 242, 0.94);
|
||||
backdrop-filter: blur(8px);
|
||||
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.22);
|
||||
box-shadow: 0 14px 30px rgba(129, 116, 96, 0.14);
|
||||
|
||||
padding: 14px;
|
||||
font-family: system-ui, -apple-system, Segoe UI, sans-serif;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#form-manifesto * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.form-manifesto-group {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-bottom: 12px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.form-manifesto-group.column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#form-manifesto textarea {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#form-manifesto input,
|
||||
#form-manifesto textarea {
|
||||
padding: 8px 10px;
|
||||
font-size: 14px;
|
||||
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.22);
|
||||
background: rgba(255, 252, 247, 0.96);
|
||||
|
||||
transition: border-color .15s, box-shadow .15s;
|
||||
}
|
||||
|
||||
#form-manifesto textarea {
|
||||
resize: vertical;
|
||||
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
|
||||
}
|
||||
|
||||
/* focus */
|
||||
#form-manifesto input:focus,
|
||||
#form-manifesto textarea:focus {
|
||||
outline: none;
|
||||
border-color: #4c6ef5;
|
||||
box-shadow: 0 0 0 2px rgba(76,110,245,.2);
|
||||
}
|
||||
|
||||
#form-manifesto button {
|
||||
white-space: nowrap;
|
||||
padding: 8px 14px;
|
||||
font-size: 13px;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
|
||||
transition: background .15s, transform .05s;
|
||||
}
|
||||
|
||||
#form-manifesto button:active {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
||||
/* primary */
|
||||
#form-manifesto button.primary {
|
||||
background: #4c6ef5;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#form-manifesto button.primary:hover {
|
||||
background: #3b5bdb;
|
||||
}
|
||||
|
||||
/* secondary */
|
||||
#form-manifesto button.secondary {
|
||||
background: #e9ecef;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
#form-manifesto button.secondary:hover {
|
||||
background: #dee2e6;
|
||||
}
|
||||
|
||||
/* Text area actions */
|
||||
#form-manifesto .actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.form-manifesto-label {
|
||||
font-size: 13px;
|
||||
color: #605242;
|
||||
white-space: nowrap;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
#form-manifesto select {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
||||
padding: 8px 10px;
|
||||
font-size: 13px;
|
||||
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.22);
|
||||
background-color: rgba(255, 252, 247, 0.96);
|
||||
|
||||
appearance: none;
|
||||
background-image:
|
||||
linear-gradient(45deg, transparent 50%, #666 50%),
|
||||
linear-gradient(135deg, #666 50%, transparent 50%);
|
||||
background-position:
|
||||
calc(100% - 16px) 50%,
|
||||
calc(100% - 11px) 50%;
|
||||
background-size: 5px 5px;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
transition: border-color .15s, box-shadow .15s;
|
||||
}
|
||||
|
||||
#form-manifesto select:focus {
|
||||
outline: none;
|
||||
border-color: #4c6ef5;
|
||||
box-shadow: 0 0 0 2px rgba(76,110,245,.2);
|
||||
}
|
||||
|
||||
.form-manifesto-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.form-manifesto-header .title {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: #25211c;
|
||||
}
|
||||
|
||||
.form-manifesto-header .tools {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.form-manifesto-header button {
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
padding: 4px 6px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.form-manifesto-header button:hover {
|
||||
background: rgba(96, 82, 66, .08);
|
||||
}
|
||||
|
||||
#form-manifesto.collapsed .form-manifesto-group {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#form-manifesto.collapsed {
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] {
|
||||
background: rgba(30, 32, 36, 0.95);
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] .form-manifesto-header .title {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] .form-manifesto-label {
|
||||
color: #cfd3d9;
|
||||
}
|
||||
|
||||
/* inputs */
|
||||
#form-manifesto[data-viewer-theme="dark"] input,
|
||||
#form-manifesto[data-viewer-theme="dark"] textarea,
|
||||
#form-manifesto[data-viewer-theme="dark"] select {
|
||||
background: #1e2024;
|
||||
color: #eee;
|
||||
border-color: #444;
|
||||
}
|
||||
|
||||
#form-manifesto select {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
||||
padding: 8px 36px 8px 10px;
|
||||
font-size: 13px;
|
||||
|
||||
border-radius: 6px;
|
||||
border: 1px solid #cfd3d9;
|
||||
background-color: #fff;
|
||||
|
||||
appearance: none;
|
||||
|
||||
background-image:
|
||||
linear-gradient(45deg, transparent 50%, #666 50%),
|
||||
linear-gradient(135deg, #666 50%, transparent 50%);
|
||||
background-position:
|
||||
calc(100% - 20px) 50%,
|
||||
calc(100% - 14px) 50%;
|
||||
background-size: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] select {
|
||||
appearance: auto;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] input::placeholder,
|
||||
#form-manifesto[data-viewer-theme="dark"] textarea::placeholder {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* buttons */
|
||||
#form-manifesto[data-viewer-theme="dark"] button.primary {
|
||||
background: #5c7cfa;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] button.secondary {
|
||||
background: #343a40;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
#form-manifesto[data-viewer-theme="dark"] .form-manifesto-header button:hover {
|
||||
background: rgba(255,255,255,.12);
|
||||
}
|
||||
|
||||
#example-model-picker {
|
||||
display: none;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin: 5px 0px;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.24);
|
||||
border-radius: 10px;
|
||||
background: rgba(250, 247, 242, 0.94);
|
||||
box-shadow: 0 12px 24px rgba(129, 116, 96, 0.12);
|
||||
font:
|
||||
12px/1.2 "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
||||
color: #111827;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
box-shadow 0.2s ease,
|
||||
color 0.2s ease;
|
||||
}
|
||||
|
||||
#example-model-picker label {
|
||||
font-weight: 600;
|
||||
color: #42382d;
|
||||
}
|
||||
|
||||
#example-model-picker .example-model-picker-spacer {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
#example-model-picker select {
|
||||
min-width: 220px;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.24);
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 252, 247, 0.96);
|
||||
color: #25211c;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
color 0.2s ease;
|
||||
}
|
||||
|
||||
#example-theme-toggle {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 1px solid rgba(164, 151, 132, 0.24);
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 252, 247, 0.96);
|
||||
color: #25211c;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
transition:
|
||||
background-color 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
color 0.2s ease,
|
||||
transform 0.2s ease;
|
||||
display: none;
|
||||
}
|
||||
|
||||
#example-theme-toggle:hover {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-model-picker {
|
||||
border-color: #444;
|
||||
background: rgba(30, 32, 36, 0.95);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-model-picker label {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-model-picker select {
|
||||
border-color: #444;
|
||||
background: #1e2024;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="dark"] #example-theme-toggle {
|
||||
border-color: #444;
|
||||
background: #1e2024;
|
||||
color: #eee;
|
||||
}
|
||||
1651
viewer/css/main.css
Executable file
1651
viewer/css/main.css
Executable file
File diff suppressed because it is too large
Load diff
959
viewer/css/spinner.css
Executable file
959
viewer/css/spinner.css
Executable file
|
|
@ -0,0 +1,959 @@
|
|||
.lv-mid {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.lv-left {
|
||||
margin-right: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.lv-right {
|
||||
margin-left: auto;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.lvt-1 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.lvt-2 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.lvt-3 {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.lvt-4 {
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.lvt-5 {
|
||||
margin-top: 100px;
|
||||
}
|
||||
|
||||
.lvb-1 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.lvb-2 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.lvb-3 {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.lvb-4 {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.lvb-5 {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.lvl-1 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.lvl-2 {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.lvl-3 {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.lvl-4 {
|
||||
margin-left: 80px;
|
||||
}
|
||||
|
||||
.lvl-5 {
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
.lvr-1 {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.lvr-2 {
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.lvr-3 {
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.lvr-4 {
|
||||
margin-right: 80px;
|
||||
}
|
||||
|
||||
.lvr-5 {
|
||||
margin-right: 100px;
|
||||
}
|
||||
|
||||
.lv-bars,
|
||||
.lv-circles,
|
||||
.lv-dots,
|
||||
.lv-squares,
|
||||
.lv-determinate_circle,
|
||||
.lv-spinner,
|
||||
.lv-dashed {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.lv-bars.tiniest,
|
||||
.lv-circles.tiniest,
|
||||
.lv-dots.tiniest,
|
||||
.lv-squares.tiniest,
|
||||
.lv-determinate_circle.tiniest,
|
||||
.lv-spinner.tiniest,
|
||||
.lv-dashed.tiniest {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
}
|
||||
.lv-bars.tiny,
|
||||
.lv-circles.tiny,
|
||||
.lv-dots.tiny,
|
||||
.lv-squares.tiny,
|
||||
.lv-determinate_circle.tiny,
|
||||
.lv-spinner.tiny,
|
||||
.lv-dashed.tiny {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
}
|
||||
.lv-bars.sm,
|
||||
.lv-circles.sm,
|
||||
.lv-dots.sm,
|
||||
.lv-squares.sm,
|
||||
.lv-determinate_circle.sm,
|
||||
.lv-spinner.sm,
|
||||
.lv-dashed.sm {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
}
|
||||
.lv-bars.md,
|
||||
.lv-circles.md,
|
||||
.lv-dots.md,
|
||||
.lv-squares.md,
|
||||
.lv-determinate_circle.md,
|
||||
.lv-spinner.md,
|
||||
.lv-dashed.md {
|
||||
height: 100px;
|
||||
width: 100px;
|
||||
}
|
||||
.lv-bars.lg,
|
||||
.lv-circles.lg,
|
||||
.lv-dots.lg,
|
||||
.lv-squares.lg,
|
||||
.lv-determinate_circle.lg,
|
||||
.lv-spinner.lg,
|
||||
.lv-dashed.lg {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
}
|
||||
.lv-bars[data-label].tiny:after,
|
||||
.lv-circles[data-label].tiny:after,
|
||||
.lv-dots[data-label].tiny:after,
|
||||
.lv-squares[data-label].tiny:after,
|
||||
.lv-determinate_circle[data-label].tiny:after,
|
||||
.lv-spinner[data-label].tiny:after,
|
||||
.lv-dashed[data-label].tiny:after {
|
||||
padding: 0 120%;
|
||||
margin-top: 20%;
|
||||
}
|
||||
.lv-bars[data-label].sm:after,
|
||||
.lv-circles[data-label].sm:after,
|
||||
.lv-dots[data-label].sm:after,
|
||||
.lv-squares[data-label].sm:after,
|
||||
.lv-determinate_circle[data-label].sm:after,
|
||||
.lv-spinner[data-label].sm:after,
|
||||
.lv-dashed[data-label].sm:after {
|
||||
padding: 0 120%;
|
||||
margin-top: 35%;
|
||||
}
|
||||
|
||||
.lv-bordered_line,
|
||||
.lv-determinate_bordered_line {
|
||||
width: 100%;
|
||||
height: 21px;
|
||||
border-radius: 10px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.lv-line,
|
||||
.lv-determinate_line {
|
||||
height: 5px;
|
||||
width: 100%;
|
||||
background-color: darkgray;
|
||||
}
|
||||
|
||||
.lv-bars,
|
||||
.lv-circles,
|
||||
.lv-determinate_line,
|
||||
.lv-bordered_line,
|
||||
.lv-determinate_bordered_line,
|
||||
.lv-dots,
|
||||
.lv-squares,
|
||||
.lv-line,
|
||||
.lv-spinner,
|
||||
.lv-determinate_circle,
|
||||
.lv-dashed {
|
||||
position: relative;
|
||||
}
|
||||
.lv-bars div,
|
||||
.lv-circles div,
|
||||
.lv-determinate_line div,
|
||||
.lv-bordered_line div,
|
||||
.lv-determinate_bordered_line div,
|
||||
.lv-dots div,
|
||||
.lv-squares div,
|
||||
.lv-line div,
|
||||
.lv-spinner div,
|
||||
.lv-determinate_circle div,
|
||||
.lv-dashed div {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.lv-determinate_bordered_line[data-percentage="true"] div:nth-child(2),
|
||||
.lv-determinate_line[data-percentage="true"] div:nth-child(2) {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.lv-line.sm,
|
||||
.lv-determinate_line.sm,
|
||||
.lv-determinate_bordered_line.sm,
|
||||
.lv-bordered_line.sm {
|
||||
width: 300px;
|
||||
}
|
||||
.lv-line.md,
|
||||
.lv-determinate_line.md,
|
||||
.lv-determinate_bordered_line.md,
|
||||
.lv-bordered_line.md {
|
||||
width: 600px;
|
||||
}
|
||||
.lv-line.lg,
|
||||
.lv-determinate_line.lg,
|
||||
.lv-determinate_bordered_line.lg,
|
||||
.lv-bordered_line.lg {
|
||||
width: 1000px;
|
||||
}
|
||||
.lv-line[data-label]:after,
|
||||
.lv-determinate_line[data-label]:after,
|
||||
.lv-determinate_bordered_line[data-label]:after,
|
||||
.lv-bordered_line[data-label]:after {
|
||||
content: attr(data-label);
|
||||
display: block;
|
||||
padding-top: 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
*[data-label] {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.lv-spinner[data-label]:after,
|
||||
.lv-circles[data-label]:after,
|
||||
.lv-determinate_circle[data-label]:after,
|
||||
.lv-dashed[data-label]:after {
|
||||
content: attr(data-label);
|
||||
display: inline-block;
|
||||
padding: 40% 0 40% 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.lv-bars[data-label]:after,
|
||||
.lv-squares[data-label]:after,
|
||||
.lv-dots[data-label]:after {
|
||||
content: attr(data-label);
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.lv-squares[data-label]:after,
|
||||
.lv-bars[data-label]:after {
|
||||
margin-top: 100%;
|
||||
}
|
||||
|
||||
.lv-determinate_line div:nth-child(1) {
|
||||
background-color: #343a40;
|
||||
height: 100%;
|
||||
width: 0;
|
||||
}
|
||||
.lv-determinate_line div:nth-child(2) {
|
||||
color: #343a40;
|
||||
left: 101%;
|
||||
top: -6px;
|
||||
visibility: hidden;
|
||||
}
|
||||
.lv-determinate_line[data-label]:after {
|
||||
color: #343a40;
|
||||
}
|
||||
|
||||
.lv-spinner[data-label]:after {
|
||||
color: #343a40;
|
||||
}
|
||||
.lv-spinner div {
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
box-sizing: border-box;
|
||||
border: 10px solid darkgrey;
|
||||
border-top: 10px solid #343a40;
|
||||
border-radius: 50%;
|
||||
animation: lv-spinner 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.lv-determinate_circle {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.lv-determinate_circle[data-label]:after {
|
||||
color: #343a40;
|
||||
}
|
||||
.lv-determinate_circle div:nth-child(1) {
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
box-sizing: border-box;
|
||||
transform: rotate(-45deg);
|
||||
border: 10px solid darkgrey;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.lv-determinate_circle div:nth-child(3) {
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
box-sizing: border-box;
|
||||
transform: rotate(-45deg);
|
||||
border: 10px solid transparent;
|
||||
border-top: 10px solid #343a40;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.lv-determinate_circle div:nth-child(2) {
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
box-sizing: border-box;
|
||||
transform: rotate(-45deg);
|
||||
border: 10px solid transparent;
|
||||
border-top: 10px solid darkgrey;
|
||||
border-radius: 50%;
|
||||
z-index: 10;
|
||||
}
|
||||
.lv-determinate_circle div:nth-child(4) {
|
||||
visibility: hidden;
|
||||
}
|
||||
.lv-determinate_circle[data-percentage="true"] div:nth-child(4) {
|
||||
visibility: visible;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
margin-top: 20%;
|
||||
color: #343a40;
|
||||
}
|
||||
.lv-determinate_circle[data-percentage="true"].sm div:nth-child(4) {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.lv-determinate_circle[data-percentage="true"].tiny div:nth-child(4) {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.lv-dashed[data-label]:after {
|
||||
color: #138d75;
|
||||
}
|
||||
.lv-dashed div {
|
||||
border: 12px dashed #138d75;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
box-sizing: border-box;
|
||||
animation: lv-dashed_animation 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
/* BORDERLESS LINE ANIMATED */
|
||||
.lv-line[data-label]:after {
|
||||
color: #343a40;
|
||||
}
|
||||
.lv-line div {
|
||||
background-color: #343a40;
|
||||
height: 100%;
|
||||
width: 0;
|
||||
animation: lv-line_animation 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
/* DETERMINATE LINE WITH BORDER */
|
||||
.lv-determinate_bordered_line {
|
||||
border: 5px #067861 solid;
|
||||
}
|
||||
.lv-determinate_bordered_line[data-label]:after {
|
||||
color: #138d75;
|
||||
}
|
||||
.lv-determinate_bordered_line div:nth-child(1) {
|
||||
height: 11px;
|
||||
width: 0;
|
||||
background-color: #138d75;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.lv-determinate_bordered_line div:nth-child(2) {
|
||||
color: #138d75;
|
||||
left: 103%;
|
||||
top: -3px;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
/* LINE */
|
||||
.lv-bordered_line {
|
||||
border: 5px solid #138d75;
|
||||
}
|
||||
.lv-bordered_line[data-label]:after {
|
||||
color: #138d75;
|
||||
}
|
||||
.lv-bordered_line div {
|
||||
height: 5px;
|
||||
background-color: #138d75;
|
||||
left: 2px;
|
||||
top: 3px;
|
||||
border-radius: 3px;
|
||||
animation: lv-bordered_line_animation 2s linear infinite;
|
||||
}
|
||||
|
||||
/* BARS */
|
||||
.lv-bars[data-label]:after {
|
||||
color: #0b5345;
|
||||
}
|
||||
.lv-bars div {
|
||||
width: 5%;
|
||||
height: 40%;
|
||||
top: 30%;
|
||||
animation: lv-bar_animation 1s ease-in-out infinite;
|
||||
}
|
||||
.lv-bars div:nth-child(1) {
|
||||
left: 12.5%;
|
||||
background: #2de3c0;
|
||||
animation-delay: -0.7s;
|
||||
}
|
||||
.lv-bars div:nth-child(2) {
|
||||
left: 22.5%;
|
||||
background: #1ddab5;
|
||||
animation-delay: -0.6s;
|
||||
}
|
||||
.lv-bars div:nth-child(3) {
|
||||
left: 32.5%;
|
||||
background: #1ac4a3;
|
||||
animation-delay: -0.5s;
|
||||
}
|
||||
.lv-bars div:nth-child(4) {
|
||||
left: 42.5%;
|
||||
background: #17ad90;
|
||||
animation-delay: -0.4s;
|
||||
}
|
||||
.lv-bars div:nth-child(5) {
|
||||
left: 52.5%;
|
||||
background: #14977d;
|
||||
animation-delay: -0.3s;
|
||||
}
|
||||
.lv-bars div:nth-child(6) {
|
||||
left: 62.5%;
|
||||
background: #11806a;
|
||||
animation-delay: -0.2s;
|
||||
}
|
||||
.lv-bars div:nth-child(7) {
|
||||
left: 72.5%;
|
||||
background: #0e6a58;
|
||||
animation-delay: -0.1s;
|
||||
}
|
||||
.lv-bars div:nth-child(8) {
|
||||
left: 82.5%;
|
||||
background: #0b5345;
|
||||
}
|
||||
|
||||
/* PULSATING DOTS */
|
||||
.lv-dots[data-label]:after {
|
||||
margin-top: 65%;
|
||||
color: #0b5345;
|
||||
}
|
||||
.lv-dots div {
|
||||
width: 19%;
|
||||
height: 19%;
|
||||
top: 43.75%;
|
||||
border-radius: 50%;
|
||||
transform: scale(0.01);
|
||||
animation: lv-dots_pulsate_animation 1s ease-in-out infinite;
|
||||
}
|
||||
.lv-dots div:nth-child(1) {
|
||||
left: 10%;
|
||||
background-color: #1ddab5;
|
||||
}
|
||||
.lv-dots div:nth-child(2) {
|
||||
left: 32.5%;
|
||||
background-color: #17ad90;
|
||||
animation-delay: 0.1s;
|
||||
}
|
||||
.lv-dots div:nth-child(3) {
|
||||
left: 55%;
|
||||
background-color: #11806a;
|
||||
animation-delay: 0.2s;
|
||||
}
|
||||
.lv-dots div:nth-child(4) {
|
||||
left: 77.5%;
|
||||
background-color: #0b5345;
|
||||
animation-delay: 0.3s;
|
||||
}
|
||||
|
||||
/* CIRCLES */
|
||||
.lv-circles[data-label]:after {
|
||||
color: #138d75;
|
||||
}
|
||||
.lv-circles.tiniest div:before {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
}
|
||||
.lv-circles.tiny div:before {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
}
|
||||
.lv-circles.sm div:before {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
.lv-circles.md div:before {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
.lv-circles.lg div:before {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.lv-circles div {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.lv-circles div:before {
|
||||
content: "";
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
border-radius: 50%;
|
||||
background-color: #138d75;
|
||||
}
|
||||
.lv-circles div:nth-child(1) {
|
||||
animation: lv-circles_move_1 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(2) {
|
||||
transform: rotate(30deg);
|
||||
opacity: 0.08;
|
||||
animation: lv-circles_move_2 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(3) {
|
||||
transform: rotate(60deg);
|
||||
opacity: 0.16;
|
||||
animation: lv-circles_move_3 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(4) {
|
||||
transform: rotate(90deg);
|
||||
opacity: 0.24;
|
||||
animation: lv-circles_move_4 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(5) {
|
||||
transform: rotate(120deg);
|
||||
opacity: 0.32;
|
||||
animation: lv-circles_move_5 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(6) {
|
||||
transform: rotate(150deg);
|
||||
opacity: 0.4;
|
||||
animation: lv-circles_move_6 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(7) {
|
||||
transform: rotate(180deg);
|
||||
opacity: 0.48;
|
||||
animation: lv-circles_move_7 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(8) {
|
||||
transform: rotate(210deg);
|
||||
opacity: 0.56;
|
||||
animation: lv-circles_move_8 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(9) {
|
||||
transform: rotate(240deg);
|
||||
opacity: 0.64;
|
||||
animation: lv-circles_move_9 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(10) {
|
||||
transform: rotate(270deg);
|
||||
opacity: 0.72;
|
||||
animation: lv-circles_move_10 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(11) {
|
||||
transform: rotate(300deg);
|
||||
opacity: 0.8;
|
||||
animation: lv-circles_move_11 1.2s infinite linear;
|
||||
}
|
||||
.lv-circles div:nth-child(12) {
|
||||
transform: rotate(330deg);
|
||||
opacity: 0.88;
|
||||
animation: lv-circles_move_12 1.2s infinite linear;
|
||||
}
|
||||
|
||||
/* SQUARES */
|
||||
.lv-squares[data-label]:after {
|
||||
color: #0b5345;
|
||||
}
|
||||
.lv-squares div {
|
||||
width: 40%;
|
||||
height: 40%;
|
||||
border-radius: 10%;
|
||||
/* top left corner */
|
||||
/* top right corner */
|
||||
/* bottom right corner */
|
||||
/* bottom left corner */
|
||||
}
|
||||
.lv-squares div:nth-child(1) {
|
||||
background-color: #1ddab5;
|
||||
top: 7%;
|
||||
left: 7%;
|
||||
animation: lv-square1_move 2s ease-in-out infinite;
|
||||
}
|
||||
.lv-squares div:nth-child(3) {
|
||||
background-color: #17ad90;
|
||||
top: 7%;
|
||||
right: 7%;
|
||||
animation: lv-square2_move 2s ease-in-out infinite;
|
||||
}
|
||||
.lv-squares div:nth-child(2) {
|
||||
background-color: #11806a;
|
||||
bottom: 7%;
|
||||
right: 7%;
|
||||
animation: lv-square3_move 2s ease-in-out infinite;
|
||||
}
|
||||
.lv-squares div:nth-child(4) {
|
||||
background-color: #0b5345;
|
||||
bottom: 7%;
|
||||
left: 7%;
|
||||
animation: lv-square4_move 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
/* animations */
|
||||
@keyframes lv-spinner {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_1 {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
8.3333333333% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_2 {
|
||||
0% {
|
||||
opacity: 0.0833333333;
|
||||
}
|
||||
8.3333333333% {
|
||||
opacity: 0;
|
||||
}
|
||||
16.6666666667% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.0833333333;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_3 {
|
||||
0% {
|
||||
opacity: 0.1666666667;
|
||||
}
|
||||
16.6666666667% {
|
||||
opacity: 0;
|
||||
}
|
||||
25% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.1666666667;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_4 {
|
||||
0% {
|
||||
opacity: 0.25;
|
||||
}
|
||||
25% {
|
||||
opacity: 0;
|
||||
}
|
||||
33.3333333333% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.25;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_5 {
|
||||
0% {
|
||||
opacity: 0.3333333333;
|
||||
}
|
||||
33.3333333333% {
|
||||
opacity: 0;
|
||||
}
|
||||
41.6666666667% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.3333333333;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_6 {
|
||||
0% {
|
||||
opacity: 0.4166666667;
|
||||
}
|
||||
41.6666666667% {
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.4166666667;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_7 {
|
||||
0% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
58.3333333333% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_8 {
|
||||
0% {
|
||||
opacity: 0.5833333333;
|
||||
}
|
||||
58.3333333333% {
|
||||
opacity: 0;
|
||||
}
|
||||
66.6666666667% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.5833333333;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_9 {
|
||||
0% {
|
||||
opacity: 0.6666666667;
|
||||
}
|
||||
66.6666666667% {
|
||||
opacity: 0;
|
||||
}
|
||||
75% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.6666666667;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_10 {
|
||||
0% {
|
||||
opacity: 0.75;
|
||||
}
|
||||
75% {
|
||||
opacity: 0;
|
||||
}
|
||||
83.3333333333% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.75;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_11 {
|
||||
0% {
|
||||
opacity: 0.8333333333;
|
||||
}
|
||||
83.3333333333% {
|
||||
opacity: 0;
|
||||
}
|
||||
91.6666666667% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.8333333333;
|
||||
}
|
||||
}
|
||||
@keyframes lv-circles_move_12 {
|
||||
0% {
|
||||
opacity: 0.9166666667;
|
||||
}
|
||||
91.6666666667% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.9166666667;
|
||||
}
|
||||
}
|
||||
@keyframes lv-square1_move {
|
||||
0%,
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
25% {
|
||||
transform: translate(116%, 0);
|
||||
}
|
||||
50% {
|
||||
transform: translate(116%, 116%);
|
||||
}
|
||||
75% {
|
||||
transform: translate(0, 116%);
|
||||
}
|
||||
}
|
||||
@keyframes lv-square2_move {
|
||||
0%,
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
25% {
|
||||
transform: translate(0, 116%);
|
||||
}
|
||||
50% {
|
||||
transform: translate(-116%, 116%);
|
||||
}
|
||||
75% {
|
||||
transform: translate(-116%, 0);
|
||||
}
|
||||
}
|
||||
@keyframes lv-square3_move {
|
||||
0%,
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
25% {
|
||||
transform: translate(-116%, 0);
|
||||
}
|
||||
50% {
|
||||
transform: translate(-116%, -116%);
|
||||
}
|
||||
75% {
|
||||
transform: translate(0, -116%);
|
||||
}
|
||||
}
|
||||
@keyframes lv-square4_move {
|
||||
0%,
|
||||
100% {
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
25% {
|
||||
transform: translate(0, -116%);
|
||||
}
|
||||
50% {
|
||||
transform: translate(116%, -116%);
|
||||
}
|
||||
75% {
|
||||
transform: translate(116%, 0);
|
||||
}
|
||||
}
|
||||
@keyframes lv-dots_pulsate_animation {
|
||||
0% {
|
||||
transform: scale(0.01);
|
||||
background-color: #1ddab5;
|
||||
}
|
||||
50% {
|
||||
transform: scale(1);
|
||||
background-color: #0b5345;
|
||||
}
|
||||
100% {
|
||||
transform: scale(0.01);
|
||||
background-color: #1ddab5;
|
||||
}
|
||||
}
|
||||
@keyframes lv-line_animation {
|
||||
0% {
|
||||
left: 0;
|
||||
width: 0;
|
||||
}
|
||||
25% {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
50% {
|
||||
left: 100%;
|
||||
width: 0;
|
||||
}
|
||||
75% {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
100% {
|
||||
left: 0;
|
||||
width: 0;
|
||||
}
|
||||
}
|
||||
@keyframes lv-bordered_line_animation {
|
||||
0% {
|
||||
left: 1%;
|
||||
width: 0;
|
||||
}
|
||||
10% {
|
||||
left: 1%;
|
||||
width: 20%;
|
||||
}
|
||||
90% {
|
||||
left: 79%;
|
||||
width: 20%;
|
||||
}
|
||||
100% {
|
||||
width: 0;
|
||||
left: 99%;
|
||||
}
|
||||
}
|
||||
@keyframes lv-bar_animation {
|
||||
0%,
|
||||
100% {
|
||||
top: 37.5%;
|
||||
height: 25%;
|
||||
bottom: 37.5%;
|
||||
width: 2.5%;
|
||||
}
|
||||
50% {
|
||||
top: 12.5%;
|
||||
height: 75%;
|
||||
bottom: 12.5%;
|
||||
width: 5%;
|
||||
}
|
||||
}
|
||||
@keyframes lv-dashed_animation {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
25% {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
50% {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
75% {
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
/*# sourceMappingURL=main.css.map */
|
||||
131
viewer/css/theme.css
Normal file
131
viewer/css/theme.css
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
.flex-container {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.half-width {
|
||||
min-width: 0;
|
||||
flex: 0 0 auto;
|
||||
max-width: 100%;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.scale-fields-wrapper {
|
||||
border: 1px solid #ccc;
|
||||
padding: 1rem;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
margin-top: 1rem;
|
||||
max-width: 100%;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.gallery-container {
|
||||
display: block;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.gallery-fields-wrapper {
|
||||
border: 1px solid #ccc;
|
||||
padding: 1rem;
|
||||
border-radius: 8px;
|
||||
background-color: #f9f9f9;
|
||||
margin-top: 1rem;
|
||||
max-width: 100%;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
#ultra-loader {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
#ultra-loader-bar {
|
||||
width: 0%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg,#4facfe,#00f2fe);
|
||||
box-shadow: 0 0 8px rgba(0,150,255,0.6);
|
||||
transition: width .35s ease;
|
||||
}
|
||||
|
||||
#ultra-loader-panel {
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background: rgba(17, 24, 39, 0.92);
|
||||
color: rgba(255, 255, 255, 0.94);
|
||||
padding: 12px 16px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
|
||||
font-size: 14px;
|
||||
opacity: 0;
|
||||
transition: opacity 2.8s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
z-index: 99999;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="light"] #ultra-loader-panel {
|
||||
background: rgba(250, 247, 242, 0.97);
|
||||
color: rgba(37, 33, 28, 0.92);
|
||||
border-color: rgba(164, 151, 132, 0.24);
|
||||
box-shadow: 0 14px 28px rgba(129, 116, 96, 0.14);
|
||||
}
|
||||
|
||||
#ultra-loader-panel.show {
|
||||
opacity: 1;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
#ultra-loader-header {
|
||||
margin-bottom: 8px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.14);
|
||||
color: rgba(255, 255, 255, 0.96);
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="light"] #ultra-loader-header {
|
||||
border-bottom-color: rgba(164, 151, 132, 0.24);
|
||||
color: rgba(37, 33, 28, 0.94);
|
||||
}
|
||||
|
||||
.ultra-step {
|
||||
margin: 4px 0;
|
||||
}
|
||||
|
||||
.ultra-step.done {
|
||||
color: #3ba55d;
|
||||
}
|
||||
|
||||
.ultra-step.active {
|
||||
color: #007bff;
|
||||
}
|
||||
|
||||
.ultra-step.pending {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.ultra-step.error {
|
||||
color: #d93025;
|
||||
}
|
||||
|
||||
#ultra-loader-error {
|
||||
margin-top: 10px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
||||
font-size: 12px;
|
||||
color: #d93025;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
body[data-viewer-theme="light"] #ultra-loader-error {
|
||||
border-top-color: rgba(164, 151, 132, 0.24);
|
||||
}
|
||||
5
viewer/css/viewer.css
Normal file
5
viewer/css/viewer.css
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
@import "./main.css";
|
||||
@import "./embed-configurator.css";
|
||||
@import "./spinner.css";
|
||||
@import "./theme.css";
|
||||
@import "./external-sources.css";
|
||||
Loading…
Add table
Add a link
Reference in a new issue