Compare commits

...

3 Commits

Author SHA1 Message Date
Halbear
b016e6bd13 more mobile support and misc changes 2026-03-11 20:04:44 +00:00
Halbear
b70fb4d2af Merge remote-tracking branch 'origin/main' 2026-03-05 21:40:42 +00:00
Halbear
637c329ac6 Mobile support... kinda 2026-03-05 21:40:29 +00:00
16 changed files with 1208 additions and 431 deletions

View File

@@ -1,10 +1,232 @@
body{ @media only screen and (max-aspect-ratio: 1.165/1) {
background-image: linear-gradient(to bottom,#245a80 10vh,transparent 90vh ), linear-gradient(to bottom right, #063657,#031d2e ); .AccountIcon{
background-size: cover; border-style: inset;
border-top: #8cefff 0.5vh solid;
border-left: #8cefff 0.5vh solid;
border-bottom: none;
border-right: none;
filter: drop-shadow(-1vh -1vh 1vh #8cefff);
margin-left:1vh;
transition: 0.25s;
margin-right:1vh;
border-radius: 4vh;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35));
width: 5vh;
height:5vh;
}
.Logo{
margin-left:1vh;
transition: 0.25s;
padding-right:1vh;
background-image: url("Logo.png");
background-repeat: no-repeat; background-repeat: no-repeat;
margin: 0; background-size: contain;
padding: 0; width: 6vh;
height: 100vh; height:6vh;
}
.Title{
transition: 0.25s;
text-shadow: #8cefff 0vh 0vh 0vh;
user-select: none;
font-family: "Arial", serif;
font-weight: bolder;
color:white;
font-size: 2.5vh;
}
.HotbarButton:hover{
cursor: pointer;
margin-right: 1vh;
width:30vw;
height: 6vh;
filter: drop-shadow(0 0 2vh #8cefff);
transform: scale(1.1) translateY(1%);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
}
.HotbarButton{
border: none;
user-select: none;
transition: 0.25s;
margin-right: 0.5vh;
margin-left: 0.5vh;
display: flex;
justify-content: center;
flex-direction: row;
align-content: center;
align-items: center;
font-family: "Arial", serif;
font-weight: bolder;
font-size: 2vh;
width: 25vw;
height: 5vh;
border-radius: 5vh;
color:white;
text-shadow: #8cefff 0vh 0vh 0vh;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35));
border-bottom: #8cefff 0.3vh solid;
border-right: #8cefff 0.3vh solid;
}
.HotbarWrapper{
flex-direction: column !important;
overflow-x: clip;
transition: 0.5s;
width: 100vw;
height: 15vh;
display: flex;
justify-content: start;
align-items: center;
align-content: center;
box-shadow: #121e29 0 0 5vh;
background-image: linear-gradient(to bottom,rgba(52, 184, 254,0.3) ,rgba(52, 184, 254,0.5),rgba(22, 144, 254,0.25),rgba(12, 64, 124,0.5));
border-bottom: #8cefff 0.3vh solid;
}
.ErrorMessageWrapper{
display: flex;
position: absolute;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: column;
width: 75vw;
height: 50vh;
top: 50vh;
left:50vw;
transform: translate(-50%,-50%);
}
.ErrorMessageImage{
background-image: url("../GeneralAssets/mascotchibi/chibilost.png");
background-repeat: no-repeat;
background-size: 7.5vh;
transition: 0.25s;
min-width: 7.5vh !important;
min-height: 8.4375vh !important;
image-rendering: pixelated;
}
.ErrorMessage:hover{
.ErrorMessageImage{
transform: scale(1);
max-width: 6.43vh !important;
min-height: 8.9375vh !important;
background-position-y: 105%;
background-image: url("../GeneralAssets/mascotchibi/chibiquestion.png");
}
}
.ErrorMessage{
padding: 1vh;
filter: drop-shadow(0 0.5vh 3vh #8cefff);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-right: rgba(32,120,155,1) 0.3vh solid;
border-bottom: rgba(32,120,155,1) 0.3vh solid;
text-shadow: #223342 0 0 2vh;
background-image:linear-gradient(to bottom right,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.3) ,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.25)), linear-gradient(to bottom,rgba(52, 184, 254,0.4),rgba(52, 184, 254,0.0) ,rgba(52, 184, 254,0.3),rgba(22, 144, 254,0.15),rgba(12, 64, 124,0.25));
border-radius: 5vh;
display: flex;
align-content: center;
flex-direction: column;
justify-content: center;
align-items: center;
transition: 0.25s;
user-select: none;
font-family: "Arial", serif;
font-weight: bolder;
color:white;
font-size: 2vh;
text-align: center;
}
}
@media only screen and (min-aspect-ratio: 1.165/1) {
.AccountIcon{
border-style: inset;
border-top: #8cefff 0.5vh solid;
border-left: #8cefff 0.5vh solid;
border-bottom: none;
border-right: none;
filter: drop-shadow(-1vh -1vh 1vh #8cefff);
margin-left:1vh;
transition: 0.25s;
margin-right:1vh;
border-radius: 4vh;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35));
width: 8vh;
height:8vh;
}
.Logo{
margin-left:1vh;
transition: 0.25s;
padding-right:1vh;
background-image: url("Logo.png");
background-repeat: no-repeat;
background-size: contain;
width: 8vh;
height:8vh;
}
.Title{
transition: 0.25s;
text-shadow: #8cefff 0vh 0vh 0vh;
user-select: none;
font-family: "Arial", serif;
font-weight: bolder;
color:white;
font-size: 4vh;
}
.HotbarButton:hover{
cursor: pointer;
margin-right: 2vh;
width:22.5vh;
height: 7vh;
filter: drop-shadow(0 0 2vh #8cefff);
transform: scale(1.1) translateY(1%);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
}
.HotbarButton{
border: none;
user-select: none;
transition: 0.25s;
margin-right: 1vh;
margin-left: 1vh;
display: flex;
justify-content: center;
flex-direction: row;
align-content: center;
align-items: center;
font-family: "Arial", serif;
font-weight: bolder;
font-size: 4vh;
width: 20vh;
height: 6vh;
border-radius: 5vh;
color:white;
text-shadow: #8cefff 0vh 0vh 0vh;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35));
border-bottom: #8cefff 0.3vh solid;
border-right: #8cefff 0.3vh solid;
}
.HotbarWrapper:hover{
.Logo{
height:9vh;
width: 9vh;
}
.Title{
font-size: 4.5vh;
}
.HotbarButton{
height: 7vh;
}
.AccountIcon{
margin-left:1vh;
transition: 0.25s;
margin-right:1vh;
width: 9vh;
height:9vh;
}
height: 12vh;
} }
.HotbarWrapper{ .HotbarWrapper{
overflow-x: clip; overflow-x: clip;
@@ -19,16 +241,6 @@ body{
background-image: linear-gradient(to bottom,rgba(52, 184, 254,0.3) ,rgba(52, 184, 254,0.5),rgba(22, 144, 254,0.25),rgba(12, 64, 124,0.5)); background-image: linear-gradient(to bottom,rgba(52, 184, 254,0.3) ,rgba(52, 184, 254,0.5),rgba(22, 144, 254,0.25),rgba(12, 64, 124,0.5));
border-bottom: #8cefff 0.3vh solid; border-bottom: #8cefff 0.3vh solid;
} }
.Logo{
margin-left:1vh;
transition: 0.25s;
padding-right:1vh;
background-image: url("Logo.png");
background-repeat: no-repeat;
background-size: contain;
width: 8vh;
height:8vh;
}
.ErrorMessageWrapper{ .ErrorMessageWrapper{
display: flex; display: flex;
position: absolute; position: absolute;
@@ -83,6 +295,16 @@ body{
font-size: 4vh; font-size: 4vh;
text-align: center; text-align: center;
} }
}
body{
background-image: linear-gradient(to bottom,#245a80 10vh,transparent 90vh ), linear-gradient(to bottom right, #063657,#031d2e );
background-size: cover;
background-repeat: no-repeat;
margin: 0;
padding: 0;
height: 100vh;
}
.LogInButtonWrapper{ .LogInButtonWrapper{
transform: scale(1.5); transform: scale(1.5);
margin-top: 5vh; margin-top: 5vh;
@@ -92,84 +314,14 @@ body{
align-content: center; align-content: center;
flex-direction: row; flex-direction: row;
} }
.HotbarWrapper:hover{
.Logo{
height:9vh;
width: 9vh;
}
.Title{
font-size: 4.5vh;
}
.HotbarButton{
height: 7vh;
}
.AccountIcon{
margin-left:1vh;
transition: 0.25s;
margin-right:1vh;
width: 9vh;
height:9vh;
}
height: 12vh;
}
.AccountIcon:hover{ .AccountIcon:hover{
transform: scale(1.2) translateY(0); transform: scale(1.2) translateY(0);
filter: drop-shadow(0 0 2vh #8cefff); filter: drop-shadow(0 0 2vh #8cefff);
} }
.AccountIcon{
border-style: inset;
border-top: #8cefff 0.5vh solid;
border-left: #8cefff 0.5vh solid;
border-bottom: none;
border-right: none;
filter: drop-shadow(-1vh -1vh 1vh #8cefff);
margin-left:1vh;
transition: 0.25s;
margin-right:1vh;
border-radius: 4vh;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35));
width: 8vh;
height:8vh;
}
.Logo:hover{ .Logo:hover{
transform: scale(1.2) translateY(0); transform: scale(1.2) translateY(0);
filter: drop-shadow(0 0 2vh #8cefff); filter: drop-shadow(0 0 2vh #8cefff);
} }
.HotbarButton:hover{
cursor: pointer;
margin-right: 2vh;
width:22.5vh;
height: 7vh;
filter: drop-shadow(0 0 2vh #8cefff);
transform: scale(1.1) translateY(1%);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
}
.HotbarButton{
border: none;
user-select: none;
transition: 0.25s;
margin-right: 1vh;
margin-left: 1vh;
display: flex;
justify-content: center;
flex-direction: row;
align-content: center;
align-items: center;
font-family: "Arial", serif;
font-weight: bolder;
font-size: 4vh;
width: 20vh;
height: 6vh;
border-radius: 5vh;
color:white;
text-shadow: #8cefff 0vh 0vh 0vh;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35));
border-bottom: #8cefff 0.3vh solid;
border-right: #8cefff 0.3vh solid;
}
.HotbarSection{ .HotbarSection{
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -193,15 +345,6 @@ body{
overflow: hidden; overflow: hidden;
pointer-events: none; pointer-events: none;
} }
.Title{
transition: 0.25s;
text-shadow: #8cefff 0vh 0vh 0vh;
user-select: none;
font-family: "Arial", serif;
font-weight: bolder;
color:white;
font-size: 4vh;
}
.Copyright{ .Copyright{
border-radius: 5vh; border-radius: 5vh;
position: fixed; position: fixed;

File diff suppressed because one or more lines are too long

View File

@@ -1,3 +1,306 @@
@media only screen and (max-aspect-ratio: 1.165/1) {
.showpassword{
flex-direction: row-reverse !important;
justify-content: center !important;
align-content: center;
align-items: center;
text-align: center;
flex-wrap: nowrap;
min-height:2vh !important;
}
.appTitleButton{
background-size: contain;
background-repeat: no-repeat;
height: 4.5vh;
width: 4.5vh;
}
.WindowBody{
justify-content: center;
align-content: start;
align-items: center;
font-family: "Arial", serif;
/*z-index: 5;*/
box-sizing: border-box;
min-height: 100%;
width: 100%;
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: #121e29 0.3vh solid;
border-right: #121e29 0.3vh solid;
filter: drop-shadow(1vh 1vh 1vh #121e29);
backdrop-filter:brightness(0.9) blur(5px);
text-shadow: #223342 0 0 2vh;
border-radius: 2.5vh;
display: flex;
flex-wrap: wrap;
box-shadow: 1vh 1vh 1vh #121e29;
padding:1vh;
transition: 0.6s;
}
input:hover{
height:3vh;
min-width: 3vh;
}
.ForgotPass{
transition: 0.25s;
font-weight: bold;
color: white !important;
font-family: "Arial", serif;
font-size: 2vh;
margin: 1vh;
}
.Formcheckbox{
margin-left: 2vh;
margin-bottom: 1vh;
}
input{
transition: 0.25s;
box-shadow: 0 0 1vh #5dacb1;
//margin-right: 5vh;
margin-bottom: 1vh;
transform: scale(1.2);
height:2vh;
min-width: 2vh;
border-radius: 1vh;
border: #8cefff 0.2vh solid;
background: transparent !important;
background-image: linear-gradient(to bottom, rgba(25,50,75,0.75), rgba(25,75,125,0.525), rgba(25,75,125,0.315), rgba(25,75,125,0.315)) !important;
}
.WindowBody{
background-image: linear-gradient(to bottom,rgba(22, 184, 224,0.5) ,rgba(22, 184, 224,0.75),rgba(22, 184, 224,0.35),rgba(42, 184, 224,0.25)),linear-gradient(to bottom, rgba(200,200,255,0.75),rgba(200,200,255,0.4),rgba(200,200,255,0.0),rgba(200,200,255,0.6));
}
.ButtonArea{
align-items: center !important;
margin-top: 2.5vh;
flex-direction: column-reverse;
}
.LogInButton:hover{
width: 80%;
transform: scale(1.3) translateY(1vh)!important;
}
.LogInButton{
border-radius: 2vh !important;
width: 75%;
transform: scale(1.2) translateY(-1vh);
background: transparent !important;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35)) !important;
}
.FormTitle{
font-size: 2.5vh !important;
}
.LoginField{
border-top: #121e29 0.3vh solid;
border-left: #121e29 0.3vh solid;
border-bottom: #8cefff 0.3vh solid;
border-right: #8cefff 0.3vh solid;
min-width: 90%;
max-width: 100%;
min-height:5vh;
padding: 1vh;// 5vh;
backdrop-filter: blur(15px);
background-color: RGBA(10,30,40,0.5);
border-radius: 2.5vh;
margin-bottom: 1vh;
flex-direction: column-reverse;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
}
.IconText{
font-family: "Arial", serif;
font-size: 1.5vh !important;
user-select: none;
}
.whiteText{
font-weight: bolder;
padding-bottom: 1vh;
text-align: center;
text-shadow: #0e4044 0.15vh 0.35vh 1vh;
font-family: "Arial", serif;
color: white;
font-size: 2vh;
}
.PopUpWrapper{
pointer-events: all;
z-index: 100 !important;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: column;
width: 95vw;
min-height: 85vh;
left: 50vw;
top: 50vh;
position: absolute;
transform: translate(-50%,-50%);
}
.WindowTitle{
font-family: "Arial", serif;
font-size: 2vh !important;
color: white;
text-shadow: #0e4044 0.15vh 0.35vh 1vh;
margin-left:0.25vh;
}
}
.HideSpinner{
display: none;
}
.LockCentre{
display: block;
position: fixed;
left: 50vw;
top: 50vh;
}
.LoadingSpinner{
width: 10vh;
height: 10vh;
border-radius: 50%;
background: transparent;
border: solid 1vh #8cefff;
border-bottom: solid 1vh transparent !important;
animation: spin 1.5s ease-in-out infinite;
filter: drop-shadow(0 0vh 1vh #8cefff);
}
@keyframes spin {
0% {
filter: drop-shadow(0 0vh 1vh #121e29);
border: solid 1vh #8cefff;
transform:translate(-50%,-50%) rotate(0deg);
}
50%{
filter: drop-shadow(0 0vh 1vh #8cefff);
border: solid 1vh #121e29;
}
100% {
filter: drop-shadow(0 0vh 1vh #121e29);
border: solid 1vh #8cefff;
transform:translate(-50%,-50%) rotate(360deg);
}
}
@media only screen and (min-aspect-ratio: 1.165/1) {
.ForgotPass:hover{
font-size: 3vh;
cursor: pointer;
color: white !important;
}
.ForgotPass{
transition: 0.25s;
color: #8cefff !important;
font-family: "Arial", serif;
}
.appTitleButton{
background-size: contain;
background-repeat: no-repeat;
height: 3.5vh;
width: 3.5vh;
}
.WindowBody{
justify-content: center;
align-content: start;
align-items: center;
font-family: "Arial", serif;
/*z-index: 5;*/
box-sizing: border-box;
height: 100%;
width: 100%;
filter: drop-shadow(1vh 1vh 1vh #121e29);
backdrop-filter:brightness(0.9) blur(5px);
text-shadow: #223342 0 0 2vh;
border-radius: 5vh;
display: flex;
flex-wrap: wrap;
box-shadow: 1vh 1vh 1vh #121e29;
padding:1vh;
transition: 0.6s;
margin-bottom: 3vh;
}
input:hover{
height:5vh;
min-width: 5vh;
}
input{
transition: 0.25s;
box-shadow: 0 0 1vh #8cefff;
margin-right: 5vh;
transform: scale(1.2);
border: none;
height:4vh;
min-width: 4vh;
border-radius: 1.5vh;
border-bottom: #8cefff 0.5vh solid;
background: transparent !important;
background-image: linear-gradient(to bottom, rgba(25,50,75,0.5), rgba(50,100,155,0.25), rgba(50,100,155,0.15), rgba(50,100,155,0.15)) !important;
}
.WindowBody{
background-image: linear-gradient(to bottom,rgba(22, 184, 224,0.1) ,rgba(22, 184, 224,0.25),rgba(22, 184, 224,0.15),rgba(42, 184, 224,0.05)),linear-gradient(to bottom, rgba(200,200,255,0.5),rgba(200,200,255,0.1),rgba(200,200,255,0.0),rgba(200,200,255,0.2));
}
.ButtonArea{
align-items: flex-start !important;
margin-top: 5vh;
flex-direction: column;
}
.LogInButton:hover{
width: 17vw;
transform: scale(1.3) translateY(1vh)!important;
}
.LogInButton{
border-radius: 2vh !important;
width: 15vw;
transform: scale(1.2) translateY(1vh);
background: transparent !important;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35)) !important;
}
.FormTitle{
font-size: 5vh !important;
}
.LoginField{
min-width: 90%;
min-height:5vh;
padding: 1vh 5vh;
backdrop-filter: blur(15px);
border-radius: 2.5vh;
margin-bottom: 1vh;
display: flex;
justify-content: left;
align-items: center;
align-content: center;
}
.WindowTitle{
font-family: "Arial", serif;
font-size: 2.35vh;
color: white;
text-shadow: #0e4044 0.15vh 0.35vh 1vh;
margin-left:0.25vh;
}
.PopUpWrapper{
pointer-events: all;
z-index: 100 !important;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: column;
width: 50vw;
height: 85vh;
left: 50vw;
top: 50vh;
position: absolute;
transform: translate(-50%,-50%);
}
.IconText{
font-family: "Arial", serif;
font-size: 1.35vh !important;
user-select: none;
}
.whiteText{
text-shadow: #0e4044 0.15vh 0.35vh 1vh;
font-family: "Arial", serif;
color: white;
font-size: 3.35vh;
}
}
.windowIcon{ .windowIcon{
user-select: none; user-select: none;
z-index: 55 !important; z-index: 55 !important;
@@ -16,21 +319,7 @@ Button{
background: transparent; background: transparent;
border: none; border: none;
} }
.PopUpWrapper{
pointer-events: all;
z-index: 100 !important;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: column;
width: 50vw;
height: 85vh;
left: 50vw;
top: 50vh;
position: absolute;
transform: translate(-50%,-50%);
}
.DraggableWrapper{ .DraggableWrapper{
pointer-events: all; pointer-events: all;
z-index: 50; /*!important;*/ z-index: 50; /*!important;*/
@@ -80,12 +369,6 @@ Button{
.MinimiseButton:hover{ .MinimiseButton:hover{
background-image: url("../GeneralAssets/MinimiseButtonHover.png"); background-image: url("../GeneralAssets/MinimiseButtonHover.png");
} }
.appTitleButton{
background-size: contain;
background-repeat: no-repeat;
height: 3.5vh;
width: 3.5vh;
}
.appTitleButton:hover{ .appTitleButton:hover{
cursor: pointer; cursor: pointer;
} }
@@ -109,64 +392,19 @@ Button{
flex-wrap: nowrap; flex-wrap: nowrap;
height: 100%; height: 100%;
} }
.WindowBody{
justify-content: center;
align-content: start;
align-items: center;
font-family: "Arial", serif;
/*z-index: 5;*/
box-sizing: border-box;
height: 100%;
width: 100%;
filter: drop-shadow(1vh 1vh 1vh #121e29);
backdrop-filter:brightness(0.9) blur(5px);
text-shadow: #223342 0 0 2vh;
background-image: linear-gradient(to bottom,rgba(22, 184, 224,0.1) ,rgba(22, 184, 224,0.25),rgba(22, 184, 224,0.15),rgba(42, 184, 224,0.05)),linear-gradient(to bottom, rgba(200,200,255,0.5),rgba(200,200,255,0.1),rgba(200,200,255,0.0),rgba(200,200,255,0.2));
border-radius: 5vh;
display: flex;
flex-wrap: wrap;
box-shadow: 1vh 1vh 1vh #121e29;
padding:1vh;
transition: 0.6s;
margin-bottom: 3vh;
}
.WindowBody.Dragging{ .WindowBody.Dragging{
box-shadow: 2vh 3vh 3vh #121e29; box-shadow: 2vh 3vh 3vh #121e29;
} }
.WindowTitle{ input{
font-family: "Arial", serif; text-align: center;
font-size: 2.35vh; text-anchor: middle;
color: white;
text-shadow: #0e4044 0.15vh 0.35vh 1vh;
margin-left:0.25vh;
}
.IconText{
font-family: "Arial", serif;
font-size: 1.35vh !important;
user-select: none;
}
.whiteText{
text-shadow: #0e4044 0.15vh 0.35vh 1vh;
font-family: "Arial", serif;
color: white;
font-size: 3.35vh;
} }
.FormBoxWrapper{ .FormBoxWrapper{
margin: 3vh; margin-top: 3vh;
margin-right: 3vh;
margin-left: 3vh;
min-width: 90%; min-width: 90%;
} }
.LoginField{
min-width: 90%;
min-height:5vh;
padding: 1vh 5vh;
backdrop-filter: blur(15px);
border-radius: 2.5vh;
margin-bottom: 1vh;
display: flex;
justify-content: left;
align-items: center;
align-content: center;
}
.minimised{ .minimised{
top: 200vh !important; top: 200vh !important;
transition: 0.5s !important; transition: 0.5s !important;
@@ -184,39 +422,7 @@ Button{
color: #8cefff !important; color: #8cefff !important;
font-family: "Arial", serif; font-family: "Arial", serif;
} }
.ButtonArea{
align-items: flex-start !important;
margin-top: 5vh;
flex-direction: column;
}
.LogInButton:hover{
width: 17vw;
transform: scale(1.3) translateY(1vh)!important;
}
input:hover{
height:5vh;
min-width: 5vh;
}
input{
transition: 0.25s;
box-shadow: 0 0 1vh #8cefff;
margin-right: 5vh;
transform: scale(1.2);
border: none;
height:3vh;
min-width: 3vh;
border-radius: 1.5vh;
border-bottom: #8cefff 0.5vh solid;
background: transparent !important;
background-image: linear-gradient(to bottom, rgba(25,50,75,0.5), rgba(50,100,155,0.25), rgba(50,100,155,0.15), rgba(50,100,155,0.15)) !important;
}
.showpassword{ .showpassword{
backdrop-filter: none !important; backdrop-filter: none !important;
} }
.LogInButton{
border-radius: 2vh !important;
width: 15vw;
transform: scale(1.2) translateY(1vh);
background: transparent !important;
background-image: linear-gradient(to bottom, rgba(100,200,255,0.5), rgba(100,200,255,0.25), rgba(100,200,255,0.15), rgba(100,200,255,0.35)) !important;
}

View File

@@ -2,20 +2,13 @@ function DragWindow(Window) {
var Touchscreen = false; var Touchscreen = false;
var CalculatedLeft = 0, CalculatedTop = 0, OldLeft = 0, OldTop = 0; var CalculatedLeft = 0, CalculatedTop = 0, OldLeft = 0, OldTop = 0;
Window.children[0].addEventListener('mousedown', mouseDown); Window.children[0].addEventListener('mousedown', mouseDown);
Window.children[0].addEventListener('touchstart', mouseDown);
function mouseDown(mouse) { function mouseDown(mouse) {
Touchscreen = mouse.type === "touchstart";
mouse.preventDefault(); mouse.preventDefault();
if (!Window.classList.contains('DraggingActive')) { if (!Window.classList.contains('DraggingActive')) {
Window.style.zIndex = "" + 55; Window.style.zIndex = "" + 55;
if (Touchscreen) {
document.addEventListener('touchmove', mouseMove);
document.addEventListener('touchend', mouseUp);
} else {
document.addEventListener('mousemove', mouseMove); document.addEventListener('mousemove', mouseMove);
document.addEventListener('mouseup', mouseUp); document.addEventListener('mouseup', mouseUp);
}
Window.classList.add('DraggingActive'); Window.classList.add('DraggingActive');
Window.children[1].classList.add("Dragging"); Window.children[1].classList.add("Dragging");
OldLeft = mouse.clientX; OldLeft = mouse.clientX;
@@ -36,23 +29,14 @@ function DragWindow(Window) {
OldTop = mouse.clientY; OldTop = mouse.clientY;
Window.style.top = ((Window.offsetTop - CalculatedTop) / innerHeight) * 100 + 'vh';//clamp(((Window.offsetTop - CalculatedTop) / innerHeight) * 100, 0, (((innerHeight - Window.offsetHeight) / innerHeight) * 100) - 5) + 'vh'; Window.style.top = ((Window.offsetTop - CalculatedTop) / innerHeight) * 100 + 'vh';//clamp(((Window.offsetTop - CalculatedTop) / innerHeight) * 100, 0, (((innerHeight - Window.offsetHeight) / innerHeight) * 100) - 5) + 'vh';
Window.style.left = ((Window.offsetLeft - CalculatedLeft) / innerWidth) * 100 + 'vw'; //clamp(((Window.offsetLeft - CalculatedLeft) / innerWidth) * 100, 0, (((innerWidth - Window.offsetWidth) / innerWidth) * 100) - 0.5) + 'vw'; Window.style.left = ((Window.offsetLeft - CalculatedLeft) / innerWidth) * 100 + 'vw'; //clamp(((Window.offsetLeft - CalculatedLeft) / innerWidth) * 100, 0, (((innerWidth - Window.offsetWidth) / innerWidth) * 100) - 0.5) + 'vw';
} else {
Window.style.top = (mouse.changedTouches[0].clientY / innerHeight) * 100 + 'vh';//clamp((mouse.changedTouches[0].clientY / innerHeight) * 100, 0, (((innerHeight - Window.offsetHeight) / innerHeight) * 100) - 5) + 'vh';
Window.style.left = (mouse.changedTouches[0].clientX / innerWidth) * 100 + 'vw';//clamp((mouse.changedTouches[0].clientX / innerWidth) * 100, 0, (((innerWidth - Window.offsetWidth) / innerWidth) * 100) - 0.5) + 'vw';
} }
} }
function mouseUp(mouse) { function mouseUp(mouse) {
Window.children[1].classList.remove('Dragging'); Window.children[1].classList.remove('Dragging');
Window.classList.remove('DraggingActive'); Window.classList.remove('DraggingActive');
if (Touchscreen) {
document.removeEventListener('touchmove', mouseMove);
document.removeEventListener('touchend', mouseUp);
Touchscreen = false;
} else {
document.removeEventListener('mousemove', mouseMove); document.removeEventListener('mousemove', mouseMove);
document.removeEventListener('mouseup', mouseUp); document.removeEventListener('mouseup', mouseUp);
}
Window.children[1].style.transition = '0.5s'; Window.children[1].style.transition = '0.5s';
Window.style.zIndex = "" + 50; Window.style.zIndex = "" + 50;
setTimeout(function () { setTimeout(function () {

View File

@@ -5,13 +5,13 @@
<div class="WindowTitle">log In</div> <div class="WindowTitle">log In</div>
</div> </div>
<div class="WindowTitleBarContainer"> <div class="WindowTitleBarContainer">
<Button id="FormBoxExitBtn" class=" ExitButton appTitleButton" onclick="removeWindow();"></Button> <Button id="FormBoxExitBtn" class=" ExitButton appTitleButton" onclick="removeWindow();" on></Button>
</div> </div>
</div> </div>
<div class="WindowBody" style="padding: 0; margin: 0;"> <div class="WindowBody" style="padding: 0; margin: 0;">
<div class="FormBoxWrapper"> <div class="FormBoxWrapper">
<form action="AccountActions/LogIn.php" METHOD="post"> <form action="AccountActions/LogIn.php" METHOD="post">
<p class="whiteText" style="text-align: center; font-size: 5vh; padding: 0; margin: 1vh; font-weight: bolder;">Log Into Existing Account</p> <p class="whiteText FormTitle" style="text-align: center; padding: 0; margin: 1vh; font-weight: bolder;">Log Into Existing Account</p>
<div class="LoginField"> <div class="LoginField">
<input class="whiteText" type="text" id="emailLogin" name="email" required maxlength="50"> <input class="whiteText" type="text" id="emailLogin" name="email" required maxlength="50">
<label for="emailLogin" class="whiteText">Email*</label> <label for="emailLogin" class="whiteText">Email*</label>
@@ -21,17 +21,18 @@
<label for="password" class="whiteText">Password*</label> <label for="password" class="whiteText">Password*</label>
</div> </div>
<div class="ForgotPass"> <div class="ForgotPass">
<a class="hyperlink" href="#">Forgot Password?</a> <a class="ForgotPass" href="#">Forgot Password?</a>
</div> </div>
<div class="LoginField showpassword"> <div class="LoginField showpassword">
<input id="showloginpasswordcheckbox" type="checkbox" onclick="showpass()" style="cursor:pointer" ><a class="whiteText" onclick="showpasstext()" style="cursor:pointer; user-select: none;">Show Password</a> <input id="showloginpasswordcheckbox" class="Formcheckbox" type="checkbox" onclick="showpass()" style="cursor:pointer" ><a class="whiteText" onclick="showpasstext()" style="cursor:pointer; user-select: none;">Show Password</a>
</div> </div>
<div class="LoginField"> <div class="LoginField">
<input class="whiteText" style="max-width: 25vh;" type="text" id="captcha" name="captcha" maxlength="25" > <input class="whiteText" style="max-width: 25vh;" type="text" id="captcha" name="captcha" maxlength="25" >
<a class="whiteText"> Type your username reversed*</a><br> <a class="whiteText"> Type your username reversed*</a><br>
</div> </div>
<div class="LoginField"> <div class="LoginField showpassword">
<input class="whiteText" type="checkbox" id="remember" name="remember" value="yes">
<input class="Formcheckbox" type="checkbox" id="remember" name="remember" value="yes">
<label for="remember" class="whiteText" > remember me?</label><br> <label for="remember" class="whiteText" > remember me?</label><br>
</div> </div>
<div class="LoginField ButtonArea"> <div class="LoginField ButtonArea">

View File

@@ -11,7 +11,7 @@
<div class="WindowBody" style="padding: 0; margin: 0;"> <div class="WindowBody" style="padding: 0; margin: 0;">
<div class="FormBoxWrapper"> <div class="FormBoxWrapper">
<form action="AccountActions/SignUp.php" method="post"> <form action="AccountActions/SignUp.php" method="post">
<p class="whiteText" style="text-align: center; font-size: 5vh; padding: 0; margin: 1vh; font-weight: bolder;">Create New Account</p> <p class="whiteText FormTitle" style="text-align: center; padding: 0; margin: 1vh; font-weight: bolder;">Create New Account</p>
<div class="LoginField" > <div class="LoginField" >
<input class="whiteText" type="text" id="username" name="username" required maxlength="25"> <input class="whiteText" type="text" id="username" name="username" required maxlength="25">
<label for="username" class="whiteText">Username*</label> <label for="username" class="whiteText">Username*</label>
@@ -29,7 +29,7 @@
<label for="password" class="whiteText">Password*</label> <label for="password" class="whiteText">Password*</label>
</div> </div>
<div class="LoginField showpassword"> <div class="LoginField showpassword">
<input id="showloginpasswordcheckbox" type="checkbox" onclick="showpass()" style="cursor:pointer" ><a class="whiteText" onclick="showpasstext()" style="cursor:pointer; user-select: none;">Show Password</a> <input id="showloginpasswordcheckbox" class="Formcheckbox" type="checkbox" onclick="showpass()" style="cursor:pointer" ><a class="whiteText" onclick="showpasstext()" style="cursor:pointer; user-select: none;">Show Password</a>
</div> </div>
<div class="LoginField"> <div class="LoginField">
<input class="whiteText" style="max-width: 25vh;" type="text" id="captcha" name="captcha" maxlength="25" > <input class="whiteText" style="max-width: 25vh;" type="text" id="captcha" name="captcha" maxlength="25" >

Binary file not shown.

Before

Width:  |  Height:  |  Size: 305 KiB

After

Width:  |  Height:  |  Size: 288 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@@ -21,13 +21,13 @@ require("../Hidden/Security/StartSession.php");
$Page = "CompanyInformation"; $Page = "CompanyInformation";
require_once("Hotbar.php"); require_once("Hotbar.php");
?> ?>
<div style="width: 100vw; height: 110vh;" onload="ChangeImg();"> <div style="max-width: 100vw; height: 110vh; margin-right: 3vh;" onload="ChangeImg();">
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 11vh; width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center"> <div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 11vh;margin-right: 3vh; min-width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center">
<a class="Title" > <a class="Title" style="margin-left: 1vh; margin-right: 1vh;" >
Company Information Company Information
</a> </a>
</div> </div>
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 26vh; width: 95vw; height: 78vh; flex-direction: row;"> <div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; margin-right: 3vh; top: 26vh; max-width: 95vw; min-height: 78vh; flex-direction: row;">
<div style="display: flex; flex-direction: column; justify-content: start; align-items: start; width: 100%; height: 100%;"> <div style="display: flex; flex-direction: column; justify-content: start; align-items: start; width: 100%; height: 100%;">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: left;"> <a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: left;">
Halbear Networking & Software Ltd is registered in Wales and was incorportated on December 24th 2025<br><br>You can contact our Customer Support through this email address: information@halbear.net<br><br> Halbear Networking & Software Ltd is registered in Wales and was incorportated on December 24th 2025<br><br>You can contact our Customer Support through this email address: information@halbear.net<br><br>
@@ -36,18 +36,18 @@ require_once("Hotbar.php");
</div> </div>
</div> </div>
</div> </div>
<div class="halbearnetFooter"> <div class="halbearnetFooter" style="margin-top: 10vh;">
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a> <a class="FooterFont " style="padding-bottom: 2vh; margin-right: 2vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a>
</div> </div>
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: right;">Useful Information:</a> <a class=" FooterFont" style="padding-bottom: 2vh; margin-right: 2vh; text-align: right;">Useful Information:</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; text-align: right; cursor: pointer; font-size: 3vh;" onclick="document.location.href='ContactUs.php';">Contact Us</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right; " onclick="document.location.href='ContactUs.php';">Contact Us</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a>
</div> </div>
</div> </div>
<div class="BackgroundFade" style="height: 135vh;"></div> <div class="BackgroundFade" style="height: 100vh; position: fixed;"></div>
</body> </body>
</html> </html>

View File

@@ -21,13 +21,13 @@ require("../Hidden/Security/StartSession.php");
$Page = "CompanyInformation"; $Page = "CompanyInformation";
require_once("Hotbar.php"); require_once("Hotbar.php");
?> ?>
<div style="width: 100vw; height: 110vh;" onload="ChangeImg();"> <div style="max-width: 100vw; height: 110vh; margin-right: 3vh;" onload="ChangeImg();">
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 11vh; width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center"> <div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 11vh;margin-right: 3vh; min-width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center">
<a class="Title" > <a class="Title" style="margin-left: 1vh; margin-right: 1vh;" >
Contact Us Contact Us
</a> </a>
</div> </div>
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 26vh; width: 95vw; height: 78vh; flex-direction: row;"> <div tabindex="0" class="StaticContentContainer contactUsContainer" style="position: absolute; left: 3vh; margin-right: 3vh; top: 26vh; max-width: 95vw; height: 78vh; flex-direction: row;">
<div style="display: flex; flex-direction: column; justify-content: start; align-items: start; width: 100%; height: 100%;"> <div style="display: flex; flex-direction: column; justify-content: start; align-items: start; width: 100%; height: 100%;">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: left;"> <a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: left;">
Halbear Networking & Software Ltd Support Email: <br> information@halbear.net<br> Halbear Networking & Software Ltd Support Email: <br> information@halbear.net<br>
@@ -37,18 +37,18 @@ require_once("Hotbar.php");
</div> </div>
</div> </div>
</div> </div>
<div class="halbearnetFooter"> <div class="halbearnetFooter" style="margin-top: 10vh;">
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a> <a class="FooterFont " style="padding-bottom: 2vh; margin-right: 2vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a>
</div> </div>
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: right;">Useful Information:</a> <a class=" FooterFont" style="padding-bottom: 2vh; margin-right: 2vh; text-align: right;">Useful Information:</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; text-align: right; cursor: pointer; font-size: 3vh;" onclick="document.location.href='ContactUs.php';">Contact Us</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right; " onclick="document.location.href='ContactUs.php';">Contact Us</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a>
</div> </div>
</div> </div>
<div class="BackgroundFade" style="height: 135vh;"></div> <div class="BackgroundFade" style="height: 100vh; position: fixed;"></div>
</body> </body>
</html> </html>

View File

@@ -22,8 +22,8 @@ $Page = "DataCollection";
require_once("Hotbar.php"); require_once("Hotbar.php");
?> ?>
<div style="width: 100vw; height: 100%; margin-top: 10vh; display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center;"> <div style="width: 100vw; height: 100%; margin-top: 10vh; display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center;">
<div tabindex="0" class="StaticContentContainer" style="margin-bottom: 3vh; position: left: 3vh; top: 11vh; width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center"> <div tabindex="0" class="StaticContentContainer" style="margin-bottom: 3vh; position: left: 3vh; top: 11vh; min-width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center">
<a class="Title" > <a class="Title" style="margin-left: 2vh; padding-right: 2vh;">
Data Usage Data Usage
</a> </a>
</div> </div>
@@ -57,17 +57,17 @@ require_once("Hotbar.php");
</div> </div>
<div class="halbearnetFooter" style="margin-top: 10vh;"> <div class="halbearnetFooter" style="margin-top: 10vh;">
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a> <a class="FooterFont " style="padding-bottom: 2vh; margin-right: 2vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a>
</div> </div>
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: right;">Useful Information:</a> <a class=" FooterFont" style="padding-bottom: 2vh; margin-right: 2vh; text-align: right;">Useful Information:</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; text-align: right; cursor: pointer; font-size: 3vh;" onclick="document.location.href='ContactUs.php';">Contact Us</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right; " onclick="document.location.href='ContactUs.php';">Contact Us</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a>
</div> </div>
</div> </div>
<div class="BackgroundFade" style="height: 560vh; !important;"></div> <div class="BackgroundFade" style="height: 100vh; position: fixed;"></div>
</body> </body>
</html> </html>

View File

@@ -12,4 +12,4 @@
<button class="HotbarButton" id="HalNet" onclick="window.location.href='../index.php'">Main Site</button> <button class="HotbarButton" id="HalNet" onclick="window.location.href='../index.php'">Main Site</button>
</div> </div>
</div> </div>
<div class="Copyright LargeWhiteFont" style="cursor: pointer; z-index: 20;" onclick="document.location.href='CompanyInformation.php'">©Halbear Networking & Software Ltd 2025</div> <div class="Copyright" style="cursor: pointer; z-index: 20;" onclick="document.location.href='CompanyInformation.php'">©Halbear Networking & Software Ltd 2025</div>

View File

@@ -3,6 +3,9 @@
font-optical-sizing: auto; font-optical-sizing: auto;
font-weight: 600; font-weight: 600;
font-style: normal; font-style: normal;
}
body{
} }
.dotgothic16-regular { .dotgothic16-regular {
font-family: "DotGothic16", sans-serif; font-family: "DotGothic16", sans-serif;
@@ -63,6 +66,295 @@
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
body{
overflow-x: hidden;
width: 100%;
}
.Copyright{
font-family: "Lexend", system-ui;
color: white;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-aspect-ratio: 1.165/1) {
.HotbarButton:active{
cursor: grabbing !important;
height: 9vh;
background: white;
filter: drop-shadow(0 0 2vh #8cefff);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
}
.ShowOffContent{
width: 100%;
}
.ShowOffContainer.showOffFlipped{
flex-direction: column-reverse !important;
}
.ShowOffContainer{
margin: 2vh;
min-width: 90vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
}
.Copyright{
position: fixed;
font-size: 1.75vh !important;
border-radius: 5vh;
backdrop-filter: blur(15px);
left: 0;
bottom: 0;
z-index: 100;
}
.EntireContentWrapper{
min-height: 100vh;
overflow-y: hidden;
}
.FadeIndex{
position: absolute;
height: 360vh;
top: 0 !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
}
.StaticSizeableContainer{
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 100%;
min-height: 100%;
}
.StaticContentContainer{
padding: 0;
filter: drop-shadow(0 0.5vh 3vh #8cefff);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-right: rgba(32,120,155,1) 0.3vh solid;
border-bottom: rgba(32,120,155,1) 0.3vh solid;
text-shadow: #223342 0 0 2vh;
background-image:linear-gradient(to bottom right,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.2) ,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.15)), linear-gradient(to bottom,rgba(52, 184, 254,0.2),rgba(52, 184, 254,0.0) ,rgba(52, 184, 254,0.15),rgba(22, 144, 254,0.075),rgba(12, 64, 124,0.125));
border-radius: 10vw;
transform: translateY(3vh);
display: flex;
flex-direction: column;
justify-content: left;
align-items: flex-start;
background-color: rgba(190,240,240,.1);
transition: 0.5s;
}
.ContentContainerImage{
border-radius: 5vh;
margin-top: 5vh;
min-width: 95vw;
cursor: default;
background-image: url("../Assets/Programming.PNG");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
border:none;
filter: none;
min-height: 45vw;
}
.ContentContainer{
padding: 0;
filter: drop-shadow(0 0.5vh 3vh #8cefff);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-right: rgba(32,120,155,1) 0.3vh solid;
border-bottom: rgba(32,120,155,1) 0.3vh solid;
text-shadow: #223342 0 0 2vh;
background-image:linear-gradient(to bottom right,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.3) ,rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.0),rgba(100, 124, 254,0.25)), linear-gradient(to bottom,rgba(52, 184, 254,0.2),rgba(52, 184, 254,0.0) ,rgba(52, 184, 254,0.15),rgba(22, 144, 254,0.075),rgba(12, 64, 124,0.125));
border-radius: 5vh;
transform: translateY(3vh);
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 92vw;
height: 70vh;
margin-top: 1vh;
margin-bottom: 1vh;
transition: 0.5s;
}
.LandingWrapper{
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width: 100vw;
height: 200vh;
padding-bottom: 3vh;
}
.FooterFont{
cursor: pointer;
font-family: 'Lexend',serif; color:white; padding-left: 1vw !important;
font-size: 2vh !important;
}
.ShortcutButton{
font-size: 1vh !important;
margin: 0.5vh !important;
max-width: 21vw !important;
min-height: 7vh !important;
transform: translateY(-4.5vh);
border-radius: 5vw !important;
}
.InfoBoxButton{
min-width: 75vw !important;
min-height:6vh;
transform: translateY(-4.5vh);
}
.IntroWrapper{
margin-top: 15vh;
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
align-content: center;
}
.ShortcutButtonWrapper{
display: flex; flex-direction: row; justify-content: center; width: 100%; flex-wrap: wrap;
}
.FrontPageTextBox{
margin-top: 1vh;
margin-bottom: 1vh;
position: relative;
width: 94vw;
}
.WelcomeTitle{
height: 10vh;
display: flex;
justify-content: center;
align-items: center;
}
.InfoBox{
height: 23vh;
flex-direction: row;
}
.ShortcutBox{
min-height: 24vh;
flex-direction: row;
}
.HotbarWrapper{
justify-content: flex-start !important;
flex-direction: column;
height: 13vh !important;
}
.TerrainGenBG{
margin-top: 10vh;
top:57vh;
height: 52.174vw;
width: 96vw;
aspect-ratio: 1.84;
}
.LargeWhiteFont{
font-size: 2.25vh !important;
}
.Title {
text-align: center;
font-size: 4vh !important;
}
.Logo{
height: 6vh !important;
width: 6vh !important;
}
.HotbarSection{
flex-wrap: wrap !important;
justify-content: center !important;
}
.HotbarButton{
margin: 0.1vh;
font-size: 1.85vh !important;
width: 22vw !important;
height: 5vh !important;
}
}
.ContentContainerImage{
transition: 0.25s;
}
.ContentContainerImage:hover {
transform: scale(1.1);
}
@media only screen and (min-aspect-ratio: 1.165/1) {
.HotbarButton:hover {
cursor: pointer;
height: 8vh;
filter: drop-shadow(0 0 2vh #8cefff);
transform: scale(1.1) translateY(1%);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
}
.HotbarButton:active{
cursor: grabbing !important;
height: 9vh;
background: white;
filter: drop-shadow(0 0 2vh #8cefff);
transform: scale(1.1) translateY(1%);
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
}
.ContentContainerImage{
border-radius: 5vh;
min-width: 45vw;
min-height: 25vw;
cursor: default;
background-image: url("../Assets/Programming.PNG");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
border:none;
filter: none;
}
.ShowOffContent{
width: 50%;
}
.ShowOffContainer{
margin: 2vh;
min-width: 90vw;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
align-content: center;
}
.Copyright{
border-radius: 5vh;
font-size: 2vh;
backdrop-filter: blur(15px);
position: fixed;
left: 0;
bottom: 0;
z-index: 100;
}
.contactUsContainer{
width: 95vw;
}
.FadeIndex{
height: 220vh !important;
}
.StaticSizeableContainer{
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
min-height: 16vw;
width: 100%;
height: 100%;
}
.StaticContentContainer{ .StaticContentContainer{
padding: 0; padding: 0;
filter: drop-shadow(0 0.5vh 3vh #8cefff); filter: drop-shadow(0 0.5vh 3vh #8cefff);
@@ -109,6 +401,65 @@
height: 80vh; height: 80vh;
padding-bottom: 3vh; padding-bottom: 3vh;
} }
.FooterFont{
cursor: pointer;
font-family: 'Lexend',serif; color:white; padding-left: 2vh;
font-size: 3vh;
}
.ShortcutButtonWrapper{
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 100%
}
.ShortcutButton{
margin-left: 1vh;
height: 10vh !important;
transform: translateY(-4.5vh) !important;
}
.InfoBoxButton{
width: 80% !important;
height:10vh;
transform: translateY(-4.5vh) !important;
}
.IntroWrapper{
width: 100vw;
height: 100vh;
}
.WelcomeTitle{
top: 11vh;
height: 10vh;
display: flex;
justify-content: center;
align-items: center;
}
.InfoBox{
top: 26vh;
height: 34vh;
flex-direction: row;
}
.ShortcutBox{
top: 63vh;
height: 24vh;
flex-direction: row;
}
.FrontPageTextBox{
position: absolute;
left: 3vh;
width: 45vw;
}
.HotbarWrapper{
flex-direction: row;
}
.TerrainGenBG{
position: absolute;
top:26vh;
height: auto;
width: 50vw;
aspect-ratio: 1.84;
left: 50vw;
}
}
.HotbarWrapper{ .HotbarWrapper{
z-index: 100; z-index: 100;
position: fixed; position: fixed;
@@ -126,26 +477,27 @@
border-bottom: #8cefff 0.3vh solid; border-bottom: #8cefff 0.3vh solid;
transition: 0.5s; transition: 0.5s;
} }
.HotbarButton:active{ .hidden{
cursor: grabbing !important; display: none !important;
height: 9vh; height: 0vh !important;
background: white; min-height: 0vh !important;
filter: drop-shadow(0 0 2vh #8cefff); max-height: 0vh !important;
transform: scale(1.1) translateY(1%); overflow-y: hidden !important;
border-top: #8cefff 0.3vh solid;
border-left: #8cefff 0.3vh solid;
border-bottom: none;
border-right: none;
} }
.HotbarButton:hover { .ShowOffContent{
cursor: pointer; display: flex;
height: 8vh; justify-content: start;
filter: drop-shadow(0 0 2vh #8cefff); flex-direction: column;
transform: scale(1.1) translateY(1%); align-content: center;
border-top: #8cefff 0.3vh solid; align-items: center;
border-left: #8cefff 0.3vh solid; }
border-bottom: none; .ShowOffContainer{
border-right: none; max-width: 100vw;
margin-top: 5vh;
padding: 2vh 2vh 6vh;
border-radius: 5vh;
//background-image: linear-gradient(to bottom, rgba(100,200,255,0.15), rgba(100,200,255,0.125), rgba(100,200,255,0.015), rgba(100,200,255,0.135));
} }
.RightFloat.Long{ .RightFloat.Long{
width: 100vh; width: 100vh;
@@ -154,6 +506,7 @@
.RightFloat{ .RightFloat{
margin-right: 1vw; margin-right: 1vw;
min-width: 75vh; min-width: 75vh;
max-width: 100vw;
} }
.LargeWhiteFont{ .LargeWhiteFont{
font-family: "Lexend", system-ui; font-family: "Lexend", system-ui;
@@ -188,6 +541,19 @@
flex-direction: column; flex-direction: column;
justify-content: flex-start; justify-content: flex-start;
} }
.ShowOffContent{
//width: 50%;
}
.ShowOffSection{
transition: 0.5s;
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
align-content: space-evenly;
}
.halbearnetFooter{ .halbearnetFooter{
border-top: white solid; border-top: white solid;
z-index: 35; z-index: 35;
@@ -202,14 +568,6 @@
background-image: linear-gradient(to bottom, rgba(180,220,255,0.125), rgba(180,220,255,0.225), rgba(180,220,255,0.0525), rgba(100,200,255,0.0725)); background-image: linear-gradient(to bottom, rgba(180,220,255,0.125), rgba(180,220,255,0.225), rgba(180,220,255,0.0525), rgba(100,200,255,0.0725));
} }
.Copyright{
border-radius: 5vh;
backdrop-filter: blur(15px);
position: fixed;
left: 0;
bottom: 0;
z-index: 100;
}
.Title{ .Title{
user-select: none; user-select: none;
font-family: "Lexend", sans-serif; font-family: "Lexend", sans-serif;
@@ -241,9 +599,7 @@ Button{
top: 0; top: 0;
z-index: -1; z-index: -1;
width: 100vw; width: 100vw;
height: 200vh;
background-image: linear-gradient(to bottom, RGBA(3, 29, 46, 0.0), RGBA(3, 29, 46, 0.1) , RGBA(3, 29, 46, 1.0), RGBA(3, 29, 46, 1.0)); background-image: linear-gradient(to bottom, RGBA(3, 29, 46, 0.0), RGBA(3, 29, 46, 0.1) , RGBA(3, 29, 46, 1.0), RGBA(3, 29, 46, 1.0));
} }
.LandingWrapper{ .LandingWrapper{
//background-image: linear-gradient(to bottom right, RGBA(6, 54, 87,0), RGBA(6, 54, 87,0.5), RGBA(6, 54, 87,0.5),RGBA(3, 29, 46,1.0)); //background-image: linear-gradient(to bottom right, RGBA(6, 54, 87,0), RGBA(6, 54, 87,0.5), RGBA(6, 54, 87,0.5),RGBA(3, 29, 46,1.0));
@@ -255,16 +611,15 @@ Button{
z-index: -2; z-index: -2;
} }
body{ body{
//background-image: linear-gradient(to bottom right, #063657,#031d2e );
//background-image: url("../Assets/Programming.PNG");
background-color: black; background-color: black;
background-attachment: fixed; background-attachment: fixed;
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow-x: clip;
max-width: 100vw;
height: 100%; height: 100%;
overflow-x:hidden;
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 1.5vh; width: 1.5vh;

View File

@@ -22,8 +22,8 @@ $Page = "UserAgreement";
require_once("Hotbar.php"); require_once("Hotbar.php");
?> ?>
<div style="width: 100vw; height: 100%; margin-top: 10vh; display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center;"> <div style="width: 100vw; height: 100%; margin-top: 10vh; display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center;">
<div tabindex="0" class="StaticContentContainer" style="margin-bottom: 3vh; position: left: 3vh; top: 11vh; width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center"> <div tabindex="0" class="StaticContentContainer" style="margin-bottom: 3vh; position: left: 3vh; top: 11vh; min-width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center">
<a class="Title" > <a class="Title" style="margin-left: 2vh; padding-right: 2vh;" >
User Agreement User Agreement
</a> </a>
</div> </div>
@@ -68,17 +68,17 @@ require_once("Hotbar.php");
</div> </div>
<div class="halbearnetFooter" style="margin-top: 10vh;"> <div class="halbearnetFooter" style="margin-top: 10vh;">
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a> <a class="FooterFont " style="padding-bottom: 2vh; margin-right: 2vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a>
</div> </div>
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: right;">Useful Information:</a> <a class=" FooterFont" style="padding-bottom: 2vh; margin-right: 2vh; text-align: right;">Useful Information:</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; text-align: right; cursor: pointer; font-size: 3vh;" onclick="document.location.href='ContactUs.php';">Contact Us</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right; " onclick="document.location.href='ContactUs.php';">Contact Us</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a>
</div> </div>
</div> </div>
<div class="BackgroundFade" style="height: 501vh; !important;"></div> <div class="BackgroundFade" style="height: 100vh; position: fixed;"></div>
</body> </body>
</html> </html>

View File

@@ -22,39 +22,111 @@ require("../Hidden/Security/StartSession.php");
$Page = "home"; $Page = "home";
require_once("Hotbar.php"); require_once("Hotbar.php");
?> ?>
<div style="width: 100vw; height: 100vh;" onload="ChangeImg();"> <div class="EntireContentWrapper">
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 11vh; width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center"> <div class="IntroWrapper" style="" onload="ChangeImg();">
<div tabindex="0" class="StaticContentContainer FrontPageTextBox WelcomeTitle" style="">
<a class="Title" > <a class="Title" >
Welcome to Halbear.Net! Welcome to Halbear.Net!
</a> </a>
</div> </div>
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 26vh; width: 45vw; height: 34vh; flex-direction: row;"> <div class="TerrainGenBG" id="TerrainGen">
</div>
<div tabindex="0" class="StaticContentContainer FrontPageTextBox InfoBox" style=" ">
<div style="display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; width: 100%; height: 100%;"> <div style="display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; width: 100%; height: 100%;">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 4vh; text-align: center;"> <a class="LargeWhiteFont" style="padding: 2vh; font-size: 4vh; text-align: center;">
Halbear Networking & Software Ltd is a Software Developer based in Wales who specialises in Game Engine Development!<br><br> Halbear Networking & Software Ltd is a Software Developer based in Wales who specialises in Game Engine Development!<br><br>
</a> </a>
<button class="HotbarButton" style="width: 80%; height:10vh; transform: translateY(-4.5vh);" id="HalNet" onclick="window.location.href='../index.php'">Wanna Know More?</button> <button class="HotbarButton InfoBoxButton" style="" id="HalNet" onclick="TheyWannaKnowMore();">Wanna Know More?</button>
</div> </div>
</div> </div>
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 63vh; width: 45vw; height: 24vh; flex-direction: row;"> <div tabindex="0" class="StaticContentContainer FrontPageTextBox ShortcutBox" style="">
<div style="display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; width: 100%; height: 100%;"> <div class="StaticSizeableContainer" style="min-height: 16vh;">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: center;"> <a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: center;">
this webiste is a landing page to make the important stuff easy to access, here are some shortcuts: <br><br> this webiste is a landing page to make the important stuff easy to access, here are some shortcuts: <br><br>
</a> </a>
<div style="display: flex; flex-direction: row; justify-content: space-evenly; width: 100%"> <div class="ShortcutButtonWrapper" style="">
<button class="HotbarButton" style="height: 10vh;transform: translateY(-4.5vh);" id="HalNet" onclick="window.location.href='../store.php'">Store</button> <button class="HotbarButton ShortcutButton" style="" id="HalNet" onclick="window.location.href='../store.php'">Store</button>
<button class="HotbarButton" style="height: 10vh;transform: translateY(-4.5vh);" id="HalNet" onclick="window.location.href='../ForumWindow.php?desktop=true&fullscreen=true'">Forums</button> <button class="HotbarButton ShortcutButton" style="" id="HalNet" onclick="window.location.href='../ForumWindow.php?desktop=true&fullscreen=true'">Forums</button>
<button class="HotbarButton" style="height: 10vh;transform: translateY(-4.5vh);" id="HalNet" onclick="window.location.href='../Software.php'">Software</button> <button class="HotbarButton ShortcutButton" style="" id="HalNet" onclick="window.location.href='../Software.php'">Software</button>
<button class="HotbarButton" style="height: 10vh;transform: translateY(-4.5vh);" id="HalNet" onclick="window.location.href='../Contact.php'">Contacts</button> <button class="HotbarButton ShortcutButton" style="" id="HalNet" onclick="window.location.href='ContactUs.php'">Contacts</button>
</div> </div>
</div> </div>
</div> </div>
<div class="TerrainGenBG" id="TerrainGen" style="position: absolute; top:26vh; height: auto; width: 50vw; aspect-ratio: 1.84; left: 50vw;"> </div>
<div class="ShowOffSection hidden" id="showOffSection" style=" transform: translateY(-14vh);">
<div tabindex="0" class="StaticContentContainer" style="margin-top:14vh; padding: 1vh 2.5vh; margin-bottom: 2vh;">
<a class="Title" >
A little bit more about us:
</a>
</div>
<div tabindex="0" class="ShowOffContainer showOffFlipped">
<div class="ShowOffContent" style="padding:1vh;">
<div class="ContentContainerImage" style=""></div>
</div>
<div class="ShowOffContent">
<div tabindex="0" style="width: 100%; display: flex; flex-direction: row; justify-content: center; text-align:center; align-items: center; transform: translateY(3vh); text-shadow: #5fabe6 0 0 1vh; padding-bottom: 2vh; text-decoration: underline;" class="Title">The User Comes First</div>
<div tabindex="0" class="StaticContentContainer" style="min-width: 80%;">
<div class="StaticSizeableContainer" style="">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: center;">
Our priority with our software is the end user experience, we will not sully our software with performance heavy DRM's or online-only functionality and no Low Level Anti-Cheat.<br><br>We design our software to the best possible quality for the user, optimised for many devices, and built with a UX around customisability and ease of use.<br><br> We also want to make our software engaging for the user, even if it is a mundane or simple software such as a word processor, making a software engaging, streamlined, and well performing is the best way to make the software keep a high work ethic for workers who have to use it day to day!
</a>
</div>
</div>
</div>
</div>
<div tabindex="0" class="ShowOffContainer">
<div class="ShowOffContent">
<div tabindex="0" style="width: 100%; display: flex; flex-direction: row; justify-content: center; text-align:center; align-items: center; transform: translateY(3vh); text-shadow: #5fabe6 0 0 1vh; padding-bottom: 2vh; text-decoration: underline;" class="Title">Made By Humans For Humans</div>
<div tabindex="0" class="StaticContentContainer" style="min-width: 80%;">
<div class="StaticSizeableContainer" style="">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: center;">
Halbear Networking & Software Ltd is comprised of people passionate about software development and computer science, our developers make their best effort to avoid the use of LLM AI in the development process<br><br> We take pride in our work!
</a>
</div>
</div>
</div>
<div class="ShowOffContent" style="padding:1vh;">
<div class="ContentContainerImage" style="background-image: url('Assets/Programming.PNG');"></div>
</div>
</div>
<div tabindex="0" class="ShowOffContainer showOffFlipped">
<div class="ShowOffContent" style="padding:1vh;">
<div class="ContentContainerImage" style="background-image: url('Assets/WinformsGameEngine.PNG');"></div>
</div>
<div class="ShowOffContent">
<div tabindex="0" style="width: 100%; display: flex; flex-direction: row; justify-content: center; text-align:center; align-items: center; transform: translateY(3vh); text-shadow: #5fabe6 0 0 1vh; padding-bottom: 2vh; text-decoration: underline;" class="Title">Expert Craftsmanship</div>
<div tabindex="0" class="StaticContentContainer" style="min-width: 80%;">
<div class="StaticSizeableContainer" style="">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: center;">
We boast impressive developer skill sets with experience in Game Engine engineering, Game Development, Software development, and web development!<br><br>
</a>
<a class="LargeWhiteFont" style="justify-content: left; padding: 2vh; font-size: 3vh; text-align: left; min-width: 90%">
Our skills include:<br>Rendering: Vulkan, OpenGL, GLSL, GLFW, GDI+, JavaFX<br>Object Oriented: Java, C#, C++, Kotlin<br>Procedural: C, Rust, Python, Lua, Javascript, PHP<br><br>We have experience in a multitude of different fields, from game development, to game engine development, backend server software, web development and even game modding!<br><br>You can check out our open source projects at
</a>
<a class="LargeWhiteFont" style="justify-content: center; padding-bottom: 3vh; font-size: 3vh; text-align: center; text-decoration:underline; color: #92c4c2; cursor: pointer; min-width: 90%" onclick="document.location.href='https://git.mallard.gdn/';">https://git.mallard.gdn!</a>
</div>
</div>
</div>
</div>
<div tabindex="0" class="ShowOffContainer">
<div class="ShowOffContent">
<div tabindex="0" style="width: 100%; display: flex; flex-direction: row; justify-content: center; text-align:center; align-items: center; transform: translateY(3vh); text-shadow: #5fabe6 0 0 1vh; padding-bottom: 2vh; text-decoration: underline;" class="Title">Environmentally Green!</div>
<div tabindex="0" class="StaticContentContainer" style="min-width: 80%;">
<div class="StaticSizeableContainer" style="">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: center;">
All our hosting is done exclusively through providers using 100% renewable energy and air cooled servers, such as IONOS and Hetzner, the data centres we rent from use no water and are powered by solar and wind energy! <br><br>And our own on-site servers are fully air-cooled, powered by the UK national grid and only ran when needed.<br><br> Almost all of our equipment is recycled from 2nd hand sellers or server auctions with the exception being the Website and Database Servers for security reasons!
</a>
</div>
</div>
</div>
<div class="ShowOffContent" style="padding: 1vh 1vh 5vh;">
<div class="ContentContainerImage" style="background-image: url('../GeneralAssets/Flowers.png');"></div>
</div>
</div> </div>
</div> </div>
<div tabindex="0" style="width: 100vw; display: flex; flex-direction: row; justify-content: center; align-items: center; transform: translateY(3vh);" class="Title">What we offer:</div> <div tabindex="0" style="width: 100vw; display: flex; flex-direction: row; justify-content: center; align-items: center; transform: translateY(3vh);" class="Title">What we offer:</div>
<div tabindex="0" class="LandingWrapper"> <div tabindex="0" class="LandingWrapper" id="MainOffers">
<button class="ContentContainer SoftDev" onclick="window.location.href='https://ironhorse.games/'"> <button class="ContentContainer SoftDev" onclick="window.location.href='https://ironhorse.games/'">
<div class="LargeWhiteFont">Software Development</div> <div class="LargeWhiteFont">Software Development</div>
<div class="ContentImage" style="display: flex; flex-direction: column;" > <div class="ContentImage" style="display: flex; flex-direction: column;" >
@@ -84,22 +156,24 @@ require_once("Hotbar.php");
</div> </div>
</button> </button>
</div> </div>
<div class="halbearnetFooter"> <div class="halbearnetFooter" id="footer">
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a> <a class="FooterFont " style="padding-bottom: 2vh; margin-right: 2vh; text-align: left;">©Halbear Networking & Software Ltd 2025</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='UserAgreement.php';">User Agreement</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a> <a class="FooterFont " style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: left;" onclick="document.location.href='DataCollection.php';">Data Collection Information</a>
</div> </div>
<div class="FooterContainer"> <div class="FooterContainer">
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 2vh; margin-right: 2vh; cursor: pointer; font-size: 3vh; text-align: right;">Useful Information:</a> <a class=" FooterFont" style="padding-bottom: 2vh; margin-right: 2vh; text-align: right;">Useful Information:</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; text-align: right; cursor: pointer; font-size: 3vh;" onclick="document.location.href='ContactUs.php';">Contact Us</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right; " onclick="document.location.href='ContactUs.php';">Contact Us</a>
<a class=LargeWhiteFont" style="font-family: 'Lexend',serif; color:white; padding-left: 2vh;padding-bottom: 0vh; margin-right: 2vh; text-decoration: underline; cursor: pointer; font-size: 3vh; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a> <a class=" FooterFont" style="padding-bottom: 0.5vh; margin-right: 2vh; text-decoration: underline; text-align: right;" onclick="document.location.href='CompanyInformation.php';">Company Information</a>
</div> </div>
</div> </div>
<div class="BackgroundFade" style="height: 220vh;"></div> <div class="BackgroundFade FadeIndex" id="backgroundFade" style="position: absolute; left: 0; top: 0;;"></div>
</div>
<script> <script>
var Images = ["Assets/TerrainGen1.gif","Assets/TerrainGen2.gif","Assets/TerrainGen3.gif"]; var Images = ["Assets/TerrainGen1.gif","Assets/TerrainGen2.gif","Assets/TerrainGen3.gif"];
var index = 0; var index = 0;
var Element = document.getElementById("backgroundFade");
function ChangeImg(){ function ChangeImg(){
document.getElementById("TerrainGen").style.backgroundImage = 'url("'+Images[index]+'")'; document.getElementById("TerrainGen").style.backgroundImage = 'url("'+Images[index]+'")';
index++; index++;
@@ -111,6 +185,20 @@ require_once("Hotbar.php");
} }
ChangeImg(); ChangeImg();
function Background(){
//if (window.scrollY > (Element.offsetTop + Element.offsetHeight - document.documentElement.clientHeight)) {
Element.style.top = Math.max(Math.min((window.scrollY + document.documentElement.clientHeight - Element.offsetHeight + 50),document.getElementById("footer").offsetTop + document.getElementById("footer").offsetHeight - Element.offsetHeight),0) + "px";
//}
BackgroundTimer();
}
function BackgroundTimer() {
setTimeout(Background, 10);
}
Background();
function TheyWannaKnowMore(){
document.getElementById("showOffSection").classList.remove("hidden");
document.getElementById("showOffSection").scrollIntoView({ block: 'start', behavior: 'smooth' });
}
</script> </script>
</body> </body>
</html> </html>

View File

@@ -17,7 +17,7 @@
<div tabindex="0" class="hotbarButton" id="ArtworkBtn" onclick="document.location.href='Artwork.php';"> <div tabindex="0" class="hotbarButton" id="ArtworkBtn" onclick="document.location.href='Artwork.php';">
<a class="buttontext">Artwork</a> <a class="buttontext">Artwork</a>
</div> </div>
<div tabindex="0" class="hotbarButton" id="ContactBtn" onclick="document.location.href='Contact.php';"> <div tabindex="0" class="hotbarButton" id="ContactBtn" onclick="document.location.href='HalbearNetLanding/ContactUs.php';">
<a class="buttontext">Contact</a> <a class="buttontext">Contact</a>
</div> </div>
<div tabindex="0" class="hotbarButtonSquare" id="AccountBtn" onclick="document.location.href='AccountCentre/AccountCentre.php?Action=Visit&SourcePage=<?php echo($Page)?>';"> <div tabindex="0" class="hotbarButtonSquare" id="AccountBtn" onclick="document.location.href='AccountCentre/AccountCentre.php?Action=Visit&SourcePage=<?php echo($Page)?>';">
@@ -38,7 +38,7 @@
$arrApps = array(); $arrApps = array();
$Apps = scandir($Page."Apps"); $Apps = scandir($Page."Apps");
foreach ($Apps as $App) { foreach ($Apps as $App) {
echo$Page."Apps" . '/' . $App; //echo$Page."Apps" . '/' . $App;
$filePath = $Page."Apps" . '/' . $App; $filePath = $Page."Apps" . '/' . $App;
if (is_file($filePath) && str_contains($filePath,"Icon.html")) { if (is_file($filePath) && str_contains($filePath,"Icon.html")) {
$Name = basename($filePath, "Icon.html"); $Name = basename($filePath, "Icon.html");