Optimized and cleaned up more scss
This commit is contained in:
parent
3257a3511a
commit
4f96fb5824
@ -7,7 +7,7 @@
|
|||||||
z-index: -1;
|
z-index: -1;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateX(-50%) translateY(-50%);
|
transform: translate(-50%, -50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
@ -24,6 +24,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
|
|
||||||
.login-form {
|
.login-form {
|
||||||
width: inherit;
|
width: inherit;
|
||||||
|
|
||||||
@ -43,10 +44,9 @@
|
|||||||
label {
|
label {
|
||||||
color: $black;
|
color: $black;
|
||||||
background-color: rgba($white, 0.5);
|
background-color: rgba($white, 0.5);
|
||||||
padding: 0.25rem 0.25rem;
|
padding: 0.25rem;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
border-top-left-radius: 3px;
|
border-radius: 3px 3px 0 0;
|
||||||
border-top-right-radius: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
@ -69,7 +69,6 @@
|
|||||||
.button {
|
.button {
|
||||||
padding: 0.6rem 0;
|
padding: 0.6rem 0;
|
||||||
min-width: 6.25rem;
|
min-width: 6.25rem;
|
||||||
position: relative;
|
|
||||||
font-size: 0.65rem;
|
font-size: 0.65rem;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
||||||
|
@ -18,22 +18,12 @@ body {
|
|||||||
user-select: none; /* Standard syntax */
|
user-select: none; /* Standard syntax */
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1, h2, h3, h4, h5, h6 {
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
font-family: GentiumPlus, serif;
|
font-family: GentiumPlus, serif;
|
||||||
color: $white;
|
color: $white;
|
||||||
}
|
}
|
||||||
|
|
||||||
p,
|
p, span, li, a, button, label {
|
||||||
span,
|
|
||||||
li,
|
|
||||||
a,
|
|
||||||
button,
|
|
||||||
label {
|
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
color: $white;
|
color: $white;
|
||||||
}
|
}
|
||||||
@ -45,18 +35,19 @@ button, input {
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
&.btn-purple {
|
&.btn-purple {
|
||||||
background-color: rgba($purple, 0.75);
|
background-color: rgba($purple, 0.75);
|
||||||
border: rgba($white, 0.35) 1px solid;
|
border: 1px solid rgba($white, 0.35);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: rgba($lilac, 0.75);
|
background-color: rgba($lilac, 0.75);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
button:hover {
|
&:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
|
@ -86,6 +86,7 @@ const bootScene = (scene: Phaser.Scene) => {
|
|||||||
padding: 30px;
|
padding: 30px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-ui,
|
.top-ui,
|
||||||
.bottom-ui {
|
.bottom-ui {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -94,9 +95,11 @@ const bootScene = (scene: Phaser.Scene) => {
|
|||||||
right: 0;
|
right: 0;
|
||||||
margin: 0 3rem;
|
margin: 0 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-ui {
|
.top-ui {
|
||||||
top: 3rem;
|
top: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-ui {
|
.bottom-ui {
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -17,51 +17,43 @@
|
|||||||
.hud-wrapper {
|
.hud-wrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
left: -2rem;
|
left: -2rem;
|
||||||
.profile {
|
|
||||||
|
.profile, .hud, &::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
top: 2rem;
|
||||||
top: 0;
|
left: 2rem;
|
||||||
|
width: 245px;
|
||||||
|
height: 75px;
|
||||||
|
border-radius: 1rem;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile {
|
||||||
width: 4rem;
|
width: 4rem;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
background-color: rgba($white, 0.8);
|
background-color: rgba($white, 0.8);
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
border: 3px solid $white;
|
border: 3px solid $white;
|
||||||
z-index: 1;
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 2; // Ensure profile is above hud and before
|
||||||
img {
|
img {
|
||||||
width: 2rem;
|
width: 2rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: calc(50% - 1rem);
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translate(-50%, -50%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.hud {
|
.hud {
|
||||||
position: absolute;
|
background: url('/assets/shapes/hud-shape.svg') center/cover no-repeat;
|
||||||
left: 2rem;
|
|
||||||
top: 2rem;
|
|
||||||
width: 245px;
|
|
||||||
height: 75px;
|
|
||||||
background-image: url('/assets/shapes/hud-shape.svg');
|
|
||||||
background-position: center;
|
|
||||||
background-size: cover;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
border-radius: 1rem;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
background: url('/assets/clouds.png') center/cover no-repeat;
|
||||||
left: 2rem;
|
mask: url('/assets/shapes/hud-image-shape.svg') center/cover no-repeat;
|
||||||
top: 2rem;
|
|
||||||
width: 245px;
|
|
||||||
height: 75px;
|
|
||||||
background-image: url('/assets/clouds.png');
|
|
||||||
background-position: center;
|
|
||||||
background-size: cover;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
border-radius: 1rem;
|
|
||||||
mask-image: url('/assets/shapes/hud-image-shape.svg');
|
|
||||||
mask-mode: luminance;
|
mask-mode: luminance;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@
|
|||||||
|
|
||||||
.menu-item {
|
.menu-item {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 3.125rem;
|
bottom: 3.125rem;
|
||||||
@ -65,7 +66,8 @@
|
|||||||
height: 0.5rem;
|
height: 0.5rem;
|
||||||
width: 0.875rem;
|
width: 0.875rem;
|
||||||
clip-path: polygon(100% 0, 0 0, 50% 100%);
|
clip-path: polygon(100% 0, 0 0, 50% 100%);
|
||||||
left: calc(50% - 0.4375rem);
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -73,7 +75,7 @@
|
|||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
background-color: rgba(127, 127, 127, 0.7);
|
background-color: rgba(127, 127, 127, 0.7);
|
||||||
border: 2px solid $white;
|
border: 2px solid $white;
|
||||||
border-radius: 100%;
|
border-radius: 50%;
|
||||||
display: block;
|
display: block;
|
||||||
width: 1.875rem;
|
width: 1.875rem;
|
||||||
height: 1.875rem;
|
height: 1.875rem;
|
||||||
@ -88,12 +90,13 @@
|
|||||||
p {
|
p {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
background-image: url('/assets/galaxy.png');
|
background-image: url('/assets/galaxy.png');
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
-webkit-filter: drop-shadow(0px 3px 6px $black);
|
|
||||||
filter: drop-shadow(0px 3px 6px $black);
|
filter: drop-shadow(0px 3px 6px $black);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -99,8 +99,8 @@ function create() {
|
|||||||
|
|
||||||
.character-select-screen {
|
.character-select-screen {
|
||||||
background: #dddddd;
|
background: #dddddd;
|
||||||
|
|
||||||
.ui-wrapper {
|
.ui-wrapper {
|
||||||
// vertical and vertical center
|
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -123,11 +123,10 @@ function create() {
|
|||||||
height: 275px;
|
height: 275px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-image: url('/assets/shapes/character-select-shape-unselected.svg');
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
|
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-image: url('/assets/shapes/character-select-shape-unselected.svg');
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-image: url('/assets/shapes/character-select-shape.svg');
|
background-image: url('/assets/shapes/character-select-shape.svg');
|
||||||
@ -152,11 +151,13 @@ function create() {
|
|||||||
height: 100px;
|
height: 100px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&::before,
|
&::before,
|
||||||
&::after {
|
&::after {
|
||||||
display: none;
|
display: none;
|
||||||
@ -184,7 +185,6 @@ function create() {
|
|||||||
border-radius: 0 0 20px 20px;
|
border-radius: 0 0 20px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// hide the radio buttons
|
|
||||||
input[type='radio'] {
|
input[type='radio'] {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -208,11 +208,11 @@ function create() {
|
|||||||
height: 30px;
|
height: 30px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
z-index: 1;
|
position: absolute;
|
||||||
right: -10px;
|
right: -10px;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
position: absolute;
|
z-index: 1;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: $dark-red;
|
background-color: $dark-red;
|
||||||
@ -228,7 +228,6 @@ function create() {
|
|||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// img under the label
|
|
||||||
.sprite-container {
|
.sprite-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -241,6 +240,7 @@ function create() {
|
|||||||
.button-wrapper {
|
.button-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 30px;
|
gap: 30px;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 8px 10px 8px 20px;
|
padding: 8px 10px 8px 20px;
|
||||||
min-width: 6.25rem;
|
min-width: 6.25rem;
|
||||||
@ -260,10 +260,6 @@ function create() {
|
|||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: rgba($lilac, 0.75);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:disabled {
|
&:disabled {
|
||||||
background-color: rgba($purple, 0.5);
|
background-color: rgba($purple, 0.5);
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
|
@ -114,33 +114,32 @@ onUnmounted(() => {
|
|||||||
button {
|
button {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
margin: auto 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: inherit;
|
width: 100%;
|
||||||
height: inherit;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover::after {
|
||||||
&::after {
|
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 38px;
|
width: 38px;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
left: 1px;
|
left: 1px;
|
||||||
top: 1px;
|
top: 1px;
|
||||||
border-radius: 100%;
|
border-radius: 50%;
|
||||||
background-color: $lilac;
|
background-color: $lilac;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.modal-body {
|
.modal-body {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
|
||||||
.submit {
|
.submit {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
button {
|
button {
|
||||||
@ -151,19 +150,26 @@ onUnmounted(() => {
|
|||||||
button {
|
button {
|
||||||
padding: 10px 16px;
|
padding: 10px 16px;
|
||||||
min-width: 6.25rem;
|
min-width: 6.25rem;
|
||||||
position: relative;
|
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: $black;
|
||||||
|
}
|
||||||
|
|
||||||
.modal-form {
|
.modal-form {
|
||||||
display: inline;
|
display: inline;
|
||||||
|
|
||||||
.form-fields {
|
.form-fields {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
color: $black;
|
color: $black;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
max-width: 250px;
|
max-width: 250px;
|
||||||
border: 1px solid $purple;
|
border: 1px solid $purple;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user