Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
parkingTurkeys committed Jul 1, 2024
0 parents commit 9944255
Show file tree
Hide file tree
Showing 12 changed files with 113 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
10 changes: 10 additions & 0 deletions .replit
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
entrypoint="index.html"
hidden=[".config"]
modules = ["web:v2-20230623-0b7a606"]

[nix]
channel = "stable-23_11"

[deployment]
publicDir = "/"
deploymentTarget = "static"
Binary file added assets/kat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/katOS.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions fileExplorer/fileExplorer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="fileStyle.css" rel="stylesheet">
</head>

<body>

<button id = "file" id = 1> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<br>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<button id = "file"> test </button>
<br>
<img src = /assets/kat.png>
<div id = "speech"> Hello World</div>
<div id = "choices"> <button id = "choice1"> Go Home </button> <button id = "choice2"> Add a File </button> <button id = "choice3"> Save </button></div>
<script src = "fileScript.js"></script>
</body>

</html>
2 changes: 2 additions & 0 deletions fileExplorer/fileScript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

document.getElementById("speech").innerHTML = "What do you want?";
15 changes: 15 additions & 0 deletions fileExplorer/fileStyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
html {
height: 100%;
width: 100%;
}

#file {
background-color : #ffea00;
height : 100px;
width : 100px;
margin : 1px;
}

#file:hover {
background-color : #ffdd00;
}
35 changes: 35 additions & 0 deletions home/home.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
body {
background-color : #00003d;
}

#logo {
border-style : solid;
border-color : #6b6b6b;
border-radius : 5px;
box-shadow : 1px 1px 5px #6b6b6b;
background-color : #00003d;
position : absolute;
left : 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top : 10%;
}

#start {
margin : 1px;
border-style : solid;
border-width : 50px;
background-color : white;
border-color : white;
font-family : Audiowide, sans-serif;
position : absolute;
left : 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top : 40%;
}

#start:hover {
background-color : #d4d4d4;
border-color : #d4d4d4;
}
Empty file added home/home.js
Empty file.
Empty file added homepage/homepage.css
Empty file.
9 changes: 9 additions & 0 deletions homepage/homepage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" href = "homepage.css">
</head>
<body>
<a href = /fileExplorer/fileExplorer.html><button> File Explorer </button></a>
</body>
</html>
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title> katOsHome</title>
<link rel="stylesheet" href="home/home.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
</head>
<body>
<img src = assets/katOS.png alt = "kat OS logo" id = "logo">
<a href = homepage/homepage.html><button id = start> START! </button></a>
</body>
</html>

0 comments on commit 9944255

Please sign in to comment.