-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9944255
Showing
12 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
document.getElementById("speech").innerHTML = "What do you want?"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |