-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from VCityTeam/exhibitShow
Exhibit show
- Loading branch information
Showing
40 changed files
with
6,337 additions
and
5,854 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,131 +1,188 @@ | ||
.fadeIn_GameView { | ||
position: fixed; | ||
width: 100%; | ||
height: 100%; | ||
background: rgb(0, 0, 0); | ||
animation: fadein 1s linear forwards; | ||
opacity: 0; | ||
} | ||
|
||
@keyframes fadein { | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.fadeOut_GameView { | ||
position: fixed; | ||
width: 100%; | ||
height: 100%; | ||
background: rgb(0, 0, 0); | ||
animation: fadeinout 1s linear forwards; | ||
opacity: 1; | ||
} | ||
|
||
@keyframes fadeout { | ||
100% { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
.popup_ui { | ||
width: 300px; | ||
position: fixed; | ||
right: 0px; | ||
bottom: 0px; | ||
} | ||
|
||
.popup-signage { | ||
position: fixed; | ||
left: 50%; | ||
top: 50%; | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
background-color: white; | ||
} | ||
|
||
.lds-default { | ||
display: inline-block; | ||
position: relative; | ||
width: 80px; | ||
height: 80px; | ||
} | ||
.lds-default div { | ||
position: absolute; | ||
width: 6px; | ||
height: 6px; | ||
background: black; | ||
border-radius: 50%; | ||
animation: lds-default 1.2s linear infinite; | ||
} | ||
.lds-default div:nth-child(1) { | ||
animation-delay: 0s; | ||
top: 37px; | ||
left: 66px; | ||
} | ||
.lds-default div:nth-child(2) { | ||
animation-delay: -0.1s; | ||
top: 22px; | ||
left: 62px; | ||
} | ||
.lds-default div:nth-child(3) { | ||
animation-delay: -0.2s; | ||
top: 11px; | ||
left: 52px; | ||
} | ||
.lds-default div:nth-child(4) { | ||
animation-delay: -0.3s; | ||
top: 7px; | ||
left: 37px; | ||
} | ||
.lds-default div:nth-child(5) { | ||
animation-delay: -0.4s; | ||
top: 11px; | ||
left: 22px; | ||
} | ||
.lds-default div:nth-child(6) { | ||
animation-delay: -0.5s; | ||
top: 22px; | ||
left: 11px; | ||
} | ||
.lds-default div:nth-child(7) { | ||
animation-delay: -0.6s; | ||
top: 37px; | ||
left: 7px; | ||
} | ||
.lds-default div:nth-child(8) { | ||
animation-delay: -0.7s; | ||
top: 52px; | ||
left: 11px; | ||
} | ||
.lds-default div:nth-child(9) { | ||
animation-delay: -0.8s; | ||
top: 62px; | ||
left: 22px; | ||
} | ||
.lds-default div:nth-child(10) { | ||
animation-delay: -0.9s; | ||
top: 66px; | ||
left: 37px; | ||
} | ||
.lds-default div:nth-child(11) { | ||
animation-delay: -1s; | ||
top: 62px; | ||
left: 52px; | ||
} | ||
.lds-default div:nth-child(12) { | ||
animation-delay: -1.1s; | ||
top: 52px; | ||
left: 62px; | ||
} | ||
@keyframes lds-default { | ||
0%, | ||
20%, | ||
80%, | ||
100% { | ||
transform: scale(1); | ||
} | ||
50% { | ||
transform: scale(1.5); | ||
} | ||
} | ||
.fadeIn_GameView { | ||
position: fixed; | ||
width: 100%; | ||
height: 100%; | ||
background: rgb(0, 0, 0); | ||
animation: fadein 1s linear forwards; | ||
opacity: 0; | ||
} | ||
|
||
@keyframes fadein { | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.fadeOut_GameView { | ||
position: fixed; | ||
width: 100%; | ||
height: 100%; | ||
background: rgb(0, 0, 0); | ||
animation: fadeinout 1s linear forwards; | ||
opacity: 1; | ||
} | ||
|
||
@keyframes fadeout { | ||
100% { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
/* Image Popup */ | ||
.popup_wrapper img { | ||
width: 100%; | ||
height: 100%; | ||
object-fit: contain; | ||
} | ||
|
||
.popup_wrapper { | ||
display: grid; | ||
grid-template-columns: repeat(10, 1fr); | ||
grid-template-rows: repeat(10, 1fr); | ||
grid-gap: 15px; | ||
position: fixed; | ||
height: 100%; | ||
width: 100%; | ||
top: 0; | ||
left: 0; | ||
} | ||
|
||
.popup_descr { | ||
background-color: white; | ||
height: fit-content; | ||
max-height: 100%; | ||
width: 100%; | ||
overflow: auto; | ||
text-align: center; | ||
padding: 1%; | ||
} | ||
|
||
.popup_close_button { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.grid_item--image { | ||
grid-column-start: 2; | ||
grid-column-end: 7; | ||
grid-row-start: 3; | ||
grid-row-end: 10; | ||
} | ||
|
||
.grid_item--map { | ||
grid-column-start: 7; | ||
grid-column-end: 10; | ||
grid-row-start: 5; | ||
grid-row-end: 10; | ||
} | ||
|
||
.grid_item--descr { | ||
grid-column-start: 7; | ||
grid-column-end: 10; | ||
grid-row-start: 2; | ||
grid-row-end: 5; | ||
} | ||
|
||
.grid_item--close { | ||
grid-column-start: 2; | ||
grid-column-end: 3; | ||
grid-row-start: 2; | ||
grid-row-end: 2; | ||
margin: 0; | ||
} | ||
|
||
.popup-signage { | ||
position: fixed; | ||
left: 50%; | ||
top: 50%; | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
background-color: white; | ||
} | ||
|
||
/*Loading Element*/ | ||
.lds-default { | ||
display: inline-block; | ||
position: relative; | ||
width: 80px; | ||
height: 80px; | ||
} | ||
.lds-default div { | ||
position: absolute; | ||
width: 6px; | ||
height: 6px; | ||
background: black; | ||
border-radius: 50%; | ||
animation: lds-default 1.2s linear infinite; | ||
} | ||
.lds-default div:nth-child(1) { | ||
animation-delay: 0s; | ||
top: 37px; | ||
left: 66px; | ||
} | ||
.lds-default div:nth-child(2) { | ||
animation-delay: -0.1s; | ||
top: 22px; | ||
left: 62px; | ||
} | ||
.lds-default div:nth-child(3) { | ||
animation-delay: -0.2s; | ||
top: 11px; | ||
left: 52px; | ||
} | ||
.lds-default div:nth-child(4) { | ||
animation-delay: -0.3s; | ||
top: 7px; | ||
left: 37px; | ||
} | ||
.lds-default div:nth-child(5) { | ||
animation-delay: -0.4s; | ||
top: 11px; | ||
left: 22px; | ||
} | ||
.lds-default div:nth-child(6) { | ||
animation-delay: -0.5s; | ||
top: 22px; | ||
left: 11px; | ||
} | ||
.lds-default div:nth-child(7) { | ||
animation-delay: -0.6s; | ||
top: 37px; | ||
left: 7px; | ||
} | ||
.lds-default div:nth-child(8) { | ||
animation-delay: -0.7s; | ||
top: 52px; | ||
left: 11px; | ||
} | ||
.lds-default div:nth-child(9) { | ||
animation-delay: -0.8s; | ||
top: 62px; | ||
left: 22px; | ||
} | ||
.lds-default div:nth-child(10) { | ||
animation-delay: -0.9s; | ||
top: 66px; | ||
left: 37px; | ||
} | ||
.lds-default div:nth-child(11) { | ||
animation-delay: -1s; | ||
top: 62px; | ||
left: 52px; | ||
} | ||
.lds-default div:nth-child(12) { | ||
animation-delay: -1.1s; | ||
top: 52px; | ||
left: 62px; | ||
} | ||
@keyframes lds-default { | ||
0%, | ||
20%, | ||
80%, | ||
100% { | ||
transform: scale(1); | ||
} | ||
50% { | ||
transform: scale(1.5); | ||
} | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-1.1 MB
client/assets/img/uploaded/33850062-2053-42DA-88AE-B6BCE3119194.jpeg
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file removed
BIN
-1010 KB
client/assets/img/uploaded/70B081F9-E194-493A-A7D0-31F73F08289C.jpeg
Binary file not shown.
File renamed without changes
File renamed without changes
Binary file modified
BIN
+254 KB
(360%)
client/assets/img/uploaded/8DA2C1D5-2E2A-4A52-8681-44044E78D171.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file removed
BIN
-522 KB
client/assets/img/uploaded/D3FB0C7B-F172-432F-B4AB-F5AEBC7808DF.jpeg
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-1.04 MB
client/assets/img/uploaded/F6A87871-FF2B-4788-B2D0-31A035586532.jpeg
Binary file not shown.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Oops, something went wrong.