Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
raisfeld-ori committed Mar 28, 2024
2 parents 7481707 + a57ae2a commit a1fae13
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/pages/login/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function login(){
<span className="circle" aria-hidden="true">
<span className="icon arrow"></span>
</span>
<span className="button-text" onClick={() => navigate("main_page")}>Login</span>
<span className="button-text" onClick={authenticate}>Login</span>
</button>
<br />
<p id='error'>{error}</p>
Expand Down
Binary file modified src/pages/main_page/assets/TOCA2.mp4
Binary file not shown.
Binary file modified src/pages/main_page/assets/terminal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 9 additions & 6 deletions src/pages/main_page/internal_apps/App.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
.frametest {
position: relative;
display: block;
border: 2px #0202022f;
border-top: 1px #02020200;
border-left: 2px #0202022f;
border-right: 2px #0202022f;
border-bottom: 1px #02020200;
border-style: solid;
z-index: 99;
padding-left: 373px;
Expand All @@ -14,7 +17,9 @@
align-items: flex-start;
height: 37px;
background-color: #2f2f2f;

border-top-left-radius: 10px;
border-top-right-radius: 10px;


}

Expand All @@ -23,22 +28,20 @@
position:sticky;
}

.frametest {
border-radius: 20px;
}

.frametest2{
border-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
backdrop-filter: blur(30px);

-webkit-backdrop-filter: blur(30px);
background-color: #333333d3;
height: 50svh;
}

.frametext2{
color: white;
margin-top: .3svh;
font-weight: normal;
}
.frame-content {
Expand Down
21 changes: 11 additions & 10 deletions src/pages/main_page/internal_apps/apps/file_system.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,12 @@
display: flex;
align-items: center;
margin-bottom: 1px;
border-top: 2px #0202022f;
min-height: 5svh;
height: 5svh;
border-top: 1px #0202022f;
border-left: 2px #0202022f;
border-top-right-radius: 20px;
border-top-left-radius: 20px;
border-right: 2px #0202022f;
border-bottom: 2px #0202022f;
border-top: #2f2f2f;
border-bottom: 1px #0202022f;
border-style: solid;
cursor: move;
font-size: 1em;
Expand All @@ -65,9 +64,6 @@
.frametest2 {
position: absolute;
display: block;
margin-top: 1svh;
border: 2px #0000001e;
border-style: solid;
cursor:context-menu;
font-size: 1em;
color: white;
Expand All @@ -79,6 +75,8 @@
background-color: #333333df;
height: 50svh;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);

}

.buttoncontextmenu {
Expand All @@ -101,8 +99,11 @@
}

.backdir {
height: 3vh;
height: 3.5vh;
width: 2vw;
margin-bottom: 0.7svh;
margin-bottom: 0.8svh;
margin-right: 0.5svh;
}
.filesystemtxt2{
font-weight: 250;
}
7 changes: 5 additions & 2 deletions src/pages/main_page/main_page.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
z-index: 2000;
height: 5svh;
backdrop-filter: blur(50px);
-webkit-backdrop-filter: blur(50px);

width: 100%;
}
Expand Down Expand Up @@ -50,6 +51,7 @@
justify-content: right;
padding-right: 1svh;
margin-left: 2svh;
margin-top: .5svh;
}


Expand Down Expand Up @@ -141,6 +143,7 @@ color: white;
background-color: #3333338b;
transition: all 0.1s ease-in-out;
backdrop-filter: blur(50px);
-webkit-backdrop-filter: blur(50px);
border-right: 2px #0202022f;
border-top: 2px #0202022f;
border-left: 2px #0202022f;
Expand Down Expand Up @@ -170,7 +173,7 @@ color: white;
.leave {
float: right;
z-index: 1;
margin-top: 39.5svh;
margin-top: 41svh;
margin-right: 0.5svh;
margin-left: 0.8svh;

Expand Down Expand Up @@ -213,7 +216,7 @@ color: white;
.exit {
float: right;
z-index: 1;
margin-top: 39.4svh;
margin-top: 41svh;
margin-right: .5svh;
transition: transform 250ms;

Expand Down
3 changes: 3 additions & 0 deletions src/pages/main_page/main_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Grid from './Grid';
import folder from './assets/folder.png';
import menu_icon from './assets/computer-laptop-color-icon.webp';
import search from './assets/search.png';
import terminal from './assets/terminal.png';
import file_system from './internal_apps/apps/file_system';
import ibetonhakari from './assets/TOCA2.mp4';
import { desktop_app } from './Grid';
Expand Down Expand Up @@ -58,6 +59,8 @@ export default function MainPage() {
<p className='hiddenclose'>Exit 😭​</p>

<BinIcon display={async () => {await update_fs();fs_display('inherit');}} name='Files' img={folder}></BinIcon>
<BinIcon display={async () => {await update_fs();fs_display('inherit');}} name='Terminal' img={terminal}></BinIcon>


</div>
<video className='hakari' src={ibetonhakari} width="100%" height="100%" autoPlay muted loop>
Expand Down

0 comments on commit a1fae13

Please sign in to comment.