This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
.center {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.frame {
|
|
||||||
background-color: #000;
|
|
||||||
padding: 20px;
|
|
||||||
margin: 20px 0;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.center p {
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<div class="center">
|
<div class="center">
|
||||||
<div class="frame">
|
<div class="big-frame text-frame">
|
||||||
<p>Welcome to Mistox LLC. A project and hobby of Derek Holloway.</p>
|
<p>Welcome to Mistox LLC. A project and hobby of Derek Holloway.</p>
|
||||||
<br />
|
<br />
|
||||||
<p>I am an indi-developer who has been making small projects since I was 13. I originally learned lua and spent 4 years mastering it. Then I moved onto C# which is my preferred language</p>
|
<p>I am an indi-developer who has been making small projects since I was 13. I originally learned lua and spent 4 years mastering it. Then I moved onto C# which is my preferred language</p>
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import { CommonModule } from '@angular/common';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'legal-about',
|
selector: 'legal-about',
|
||||||
templateUrl: './about.component.html',
|
templateUrl: './about.component.html',
|
||||||
styleUrls: [ './about.component.css' ],
|
|
||||||
imports: [ FormsModule, CommonModule ]
|
imports: [ FormsModule, CommonModule ]
|
||||||
})
|
})
|
||||||
export class AboutComponent {
|
export class AboutComponent {
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
.center {
|
|
||||||
background-color: green;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile-frame {
|
|
||||||
column-count: 4;
|
|
||||||
column-gap: 20px;
|
|
||||||
padding: 20px;
|
|
||||||
width: calc(100% - 40px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile{
|
|
||||||
background-color: aqua;
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,5 @@
|
|||||||
<div class="tile-frame">
|
<div class="center">
|
||||||
|
<div class="big-frame text-frame">
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -8,7 +8,6 @@ import { CommonModule } from '@angular/common';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'legal-contact',
|
selector: 'legal-contact',
|
||||||
templateUrl: './contact.component.html',
|
templateUrl: './contact.component.html',
|
||||||
styleUrls: [ './contact.component.css' ],
|
|
||||||
imports: [ FormsModule, CommonModule ]
|
imports: [ FormsModule, CommonModule ]
|
||||||
})
|
})
|
||||||
export class ContactComponent {
|
export class ContactComponent {
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
.center {
|
|
||||||
background-color: green;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile-frame {
|
|
||||||
column-count: 4;
|
|
||||||
column-gap: 20px;
|
|
||||||
padding: 20px;
|
|
||||||
width: calc(100% - 40px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tile{
|
|
||||||
background-color: aqua;
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,5 @@
|
|||||||
<div class="tile-frame">
|
<div class="center">
|
||||||
|
<div class="big-frame text-frame">
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tile">
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -8,7 +8,6 @@ import { CommonModule } from '@angular/common';
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'legal-privacy',
|
selector: 'legal-privacy',
|
||||||
templateUrl: './privacy.component.html',
|
templateUrl: './privacy.component.html',
|
||||||
styleUrls: [ './privacy.component.css' ],
|
|
||||||
imports: [ FormsModule, CommonModule ]
|
imports: [ FormsModule, CommonModule ]
|
||||||
})
|
})
|
||||||
export class PrivacyComponent {
|
export class PrivacyComponent {
|
||||||
|
|||||||
+92
-113
@@ -1,26 +1,70 @@
|
|||||||
/* You can add global styles to this file, and also import other style files */
|
/* You can add global styles to this file, and also import other style files */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--Mistox-Dark: #5e0c0c;
|
--mistox-bg-dark: oklch(0.92 0.065 264);
|
||||||
--Mistox-Medium: #890620;
|
--mistox-bg-medium: oklch(0.96 0.065 264);
|
||||||
--Mistox-Light: #B6465F;
|
--mistox-bg-light: oklch(1 0.065 264);
|
||||||
--Mistox-Bright: #FC440F;
|
|
||||||
--Mistox-Frame: #FF5A00CC;
|
--mistox-text: oklch(0.15 0.13 264);
|
||||||
--Mistox-Button: #ff9999;
|
--mistox-text-sub: oklch(0.4 0.13 264);
|
||||||
--Mistox-Button-Hover: #ff999977;
|
|
||||||
--Mistox-White: #FFF;
|
--mistox-border-light: oklch(1 0.13 264);
|
||||||
--Mistox-Black: #000;
|
--mistox-border: oklch(0.6 0.13 264);
|
||||||
--Mistox-Background: #ebebeb;
|
--mistox-border-dark: oklch(0.7 0.13 264);
|
||||||
|
|
||||||
|
--mistox-button-text: oklch(1 0.00011 271.152);
|
||||||
|
|
||||||
|
--mistox-button-primary: oklch(0.4 0.13 264);
|
||||||
|
--mistox-button-primary-click: oklch(0.3 0.13 264);
|
||||||
|
|
||||||
|
--mistox-button-secondary: oklch(0.4 0.13 84);
|
||||||
|
--mistox-button-secondary-click: oklch(0.3 0.13 84);
|
||||||
|
|
||||||
|
--mistox-alert-danger: oklch(0.5 0.13 30);
|
||||||
|
--mistox-alert-warning: oklch(0.5 0.13 100);
|
||||||
|
--mistox-alert-success: oklch(0.5 0.13 160);
|
||||||
|
--mistox-alert-info: oklch(0.5 0.13 260);
|
||||||
|
|
||||||
|
--mistox-shadow: 0px 2px 2px oklch(0 0 0 / 0.2), 0px 4px 4px oklch(0 0 0 / 0.1);
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--mistox-bg-dark: oklch(0.1 0.065 264);
|
||||||
|
--mistox-bg-medium: oklch(0.15 0.065 264);
|
||||||
|
--mistox-bg-light: oklch(0.2 0.065 264);
|
||||||
|
|
||||||
|
--mistox-text: oklch(0.96 0.1 264);
|
||||||
|
--mistox-text-sub: oklch(0.76 0.1 264);
|
||||||
|
|
||||||
|
--mistox-border-light: oklch(0.5 0.13 264);
|
||||||
|
--mistox-border: oklch(0.4 0.13 264);
|
||||||
|
--mistox-border-dark: oklch(0.3 0.13 264);
|
||||||
|
|
||||||
|
--mistox-button-text: oklch(0 0.00011 271.152);
|
||||||
|
|
||||||
|
--mistox-button-primary: oklch(0.76 0.13 264);
|
||||||
|
--mistox-button-secondary: oklch(0.76 0.13 84);
|
||||||
|
|
||||||
|
--mistox-alert-danger: oklch(0.7 0.13 30);
|
||||||
|
--mistox-alert-warning: oklch(0.7 0.13 100);
|
||||||
|
--mistox-alert-success: oklch(0.7 0.13 160);
|
||||||
|
--mistox-alert-info: oklch(0.7 0.13 260);
|
||||||
|
|
||||||
|
--mistox-shadow: 0px 2px 2px oklch(0 0 0 / 0.2), 0px 4px 4px oklch(0 0 0 / 0.1);
|
||||||
|
|
||||||
|
color: #fff;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23999999' fill-opacity='0.2' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
background-color: var(--mistox-bg-medium);
|
||||||
background-color: var(--Mistox-White);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Header / Footer */
|
/* Header / Footer */
|
||||||
@@ -30,7 +74,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 200px;
|
height: 200px;
|
||||||
/*background-color: var(--Mistox-Dark);*/
|
/*background-color: var(--Mistox-Dark);*/
|
||||||
background: linear-gradient(to bottom, var(--Mistox-Dark) 50%, transparent 100%);
|
background: linear-gradient(to bottom, var(--mistox-bg-light) 50%, transparent 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-bar-logo {
|
.top-bar-logo {
|
||||||
@@ -58,8 +102,8 @@ body {
|
|||||||
margin: 10px;
|
margin: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 15px 0;
|
padding: 15px 0;
|
||||||
background-color: var(--Mistox-Dark);
|
background-color: var(--mistox-button-primary);
|
||||||
color: var(--Mistox-White);
|
color: var(--mistox-button-text);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@@ -70,21 +114,8 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.nav-button:hover {
|
.nav-button:hover {
|
||||||
background-color: var(--Mistox-Medium);
|
background-color: var(--mistox-button-primary-click);
|
||||||
box-shadow: 4px 3px 6px var(--Mistox-Black);
|
box-shadow: 4px 3px 6px var(--mistox-shadow);
|
||||||
}
|
|
||||||
|
|
||||||
.nav-button:active {
|
|
||||||
transform: translate( 4px, 2px );
|
|
||||||
background-color: var(--Mistox-Dark);
|
|
||||||
border: none;
|
|
||||||
color: var(--Mistox-White);
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.active {
|
|
||||||
background-color: var(--Mistox-Light);
|
|
||||||
color: var(--Mistox-Frame);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
@@ -96,7 +127,7 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
background: linear-gradient(to top, var(--Mistox-Dark) 50%, transparent 100%);
|
background: linear-gradient(to top, var(--mistox-bg-dark) 50%, transparent 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-bar-logo {
|
.bottom-bar-logo {
|
||||||
@@ -130,11 +161,11 @@ body {
|
|||||||
|
|
||||||
.bottom-bar-float {
|
.bottom-bar-float {
|
||||||
align-items: end;
|
align-items: end;
|
||||||
color: var(--Mistox-White);
|
color: var(--mistox-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-bar-padding {
|
.bottom-bar-padding {
|
||||||
color: var(--Mistox-White);
|
color: var(--mistox-text);
|
||||||
margin: 15px;
|
margin: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,6 +175,7 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
min-height: calc(100vh - 300px);
|
min-height: calc(100vh - 300px);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -164,23 +196,24 @@ body {
|
|||||||
width: auto !important;
|
width: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.background-border {
|
.big-frame {
|
||||||
border: var(--Mistox-Background) 2px solid;
|
background-color: var(--mistox-bg-light);
|
||||||
border-radius: 6px;
|
padding: 4px 20px;
|
||||||
|
width: 400px;
|
||||||
|
color: var(--mistox-text);
|
||||||
|
border: 1px solid var(--mistox-border);
|
||||||
|
break-inside: avoid;
|
||||||
|
border-radius: 5px;
|
||||||
|
margin: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.big-frame {
|
.big-frame h1{
|
||||||
background-color: var(--Mistox-Background);
|
text-align: center;
|
||||||
padding: 4px;
|
|
||||||
width: 400px;
|
|
||||||
color: var(--Mistox-Black);
|
|
||||||
border: 1px solid var(--Mistox-Black);
|
|
||||||
break-inside: avoid;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.big-frame h3{
|
.big-frame h3{
|
||||||
margin: 15px 0 30px 0;
|
margin: 15px 0 30px 0;
|
||||||
color: var(--Mistox-Black);
|
color: var(--mistox-text);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -190,7 +223,11 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
top: -20px;
|
top: -20px;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: var(--Mistox-Bright);
|
color: var(--mistox-alert-danger);
|
||||||
|
}
|
||||||
|
|
||||||
|
.big-frame p{
|
||||||
|
color: var(--mistox-text-sub);
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame-button {
|
.frame-button {
|
||||||
@@ -201,7 +238,7 @@ body {
|
|||||||
position: relative;
|
position: relative;
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: var(--Mistox-Black);
|
color: var(--mistox-text);
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
transition: .5s;
|
transition: .5s;
|
||||||
top: -70px;
|
top: -70px;
|
||||||
@@ -216,10 +253,10 @@ body {
|
|||||||
margin: 0 20px;
|
margin: 0 20px;
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: var(--Mistox-Black);
|
color: var(--mistox-text);
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid var(--Mistox-Black);
|
border-bottom: 1px solid var(--mistox-text);
|
||||||
outline: none;
|
outline: none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
@@ -228,32 +265,7 @@ body {
|
|||||||
.big-frame .frame-item input:not(:placeholder-shown) ~ label {
|
.big-frame .frame-item input:not(:placeholder-shown) ~ label {
|
||||||
top: -95px;
|
top: -95px;
|
||||||
left: 10px;
|
left: 10px;
|
||||||
color: var(--Mistox-Light);
|
color: var(--mistox-alert-info);
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.big-frame .frame-item textarea:autofill,
|
|
||||||
.big-frame .frame-item textarea:-webkit-autofill,
|
|
||||||
.big-frame .frame-item textarea {
|
|
||||||
position: relative;
|
|
||||||
width: calc(100% - 40px);
|
|
||||||
margin: 0 20px;
|
|
||||||
padding: 10px 0;
|
|
||||||
font-size: 15px;
|
|
||||||
color: var(--Mistox-White);
|
|
||||||
margin-bottom: 30px;
|
|
||||||
border: none;
|
|
||||||
border-bottom: 1px solid var(--Mistox-Black);
|
|
||||||
outline: none;
|
|
||||||
background: transparent;
|
|
||||||
height: 80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.big-frame .frame-item textarea:focus ~ label,
|
|
||||||
.big-frame .frame-item textarea:not(:placeholder-shown) ~ label {
|
|
||||||
top: -150px;
|
|
||||||
left: 10px;
|
|
||||||
color: var(--Mistox-Light);
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,45 +283,18 @@ body {
|
|||||||
|
|
||||||
.sub-frame a {
|
.sub-frame a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #00F;
|
color: var(--mistox-alert-info);
|
||||||
}
|
|
||||||
|
|
||||||
.sub-frame a :hover {
|
|
||||||
color: var(--Mistox-Bright);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.img-frame {
|
.img-frame {
|
||||||
width: 610px;
|
width: 610px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-holder{
|
|
||||||
float: left;
|
|
||||||
border: 1px solid var(--Mistox-Black);
|
|
||||||
width: fit-content;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.delete-button {
|
|
||||||
position: absolute;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
color: #000;
|
|
||||||
background-color: red;
|
|
||||||
border: none;
|
|
||||||
border-radius: 4px;
|
|
||||||
transform: translate(180px, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.delete-button:hover{
|
|
||||||
background-color: #890620;
|
|
||||||
}
|
|
||||||
|
|
||||||
.submit{
|
.submit{
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
color: var(--Mistox-Black);
|
color: var(--mistox-button-text);
|
||||||
background-color: var(--Mistox-Background);
|
background-color: var(--mistox-button-secondary);
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@@ -318,20 +303,14 @@ body {
|
|||||||
letter-spacing: 4px;
|
letter-spacing: 4px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
border: solid 1px var(--Mistox-Black);
|
border: solid 1px var(--mistox-border-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
.submit:hover {
|
.submit:hover {
|
||||||
box-shadow: 4px 3px 6px var(--Mistox-Dark);
|
box-shadow: 4px 3px 6px var(--mistox-button-secondary-click);
|
||||||
}
|
|
||||||
|
|
||||||
.submit:active {
|
|
||||||
transform: translate( 4px, 2px );
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
color: var(--Mistox-Bright);
|
color: var(--mistox-text);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user