-
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
Showing
13 changed files
with
1,009 additions
and
321 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,42 @@ | ||
.popout-body { | ||
width: 100%; | ||
height: 100vh; | ||
margin: 0; | ||
padding: 20px; | ||
box-sizing: border-box; | ||
background-color: #000000; | ||
font-family: Arial, sans-serif; | ||
color: #ffffff; | ||
} | ||
|
||
.popout-container { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
background-color: #1a1a1a; | ||
padding: 20px; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.popout-container h1, .popout-container h2 { | ||
color: #ffffff; | ||
} | ||
|
||
.popout-container textarea { | ||
width: 100%; | ||
height: 300px; | ||
margin-bottom: 10px; | ||
background-color: #2a2a2a; | ||
color: #ffffff; | ||
border: 1px solid #3a3a3a; | ||
} | ||
|
||
.popout-container input[type="text"] { | ||
background-color: #2a2a2a; | ||
color: #ffffff; | ||
border: 1px solid #3a3a3a; | ||
} | ||
|
||
.phrase-count { | ||
color: #ffffff; | ||
} |
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
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,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Cryptic Chat Popout</title> | ||
<link rel="stylesheet" href="../css/styles.css"> | ||
<link rel="stylesheet" href="../css/popout.css"> | ||
</head> | ||
<body class="popout-body"> | ||
<div class="popout-container"> | ||
<h1>Cryptic Chat Popout</h1> | ||
|
||
<section> | ||
<h2>Codebook</h2> | ||
<div class="codebook-actions"> | ||
<button class="icon-button" id="downloadBtn" title="Export Codebook"> | ||
<img src="../icons/download.png" alt="Export"> | ||
</button> | ||
<button class="icon-button" id="uploadBtn" title="Import Codebook"> | ||
<img src="../icons/upload.png" alt="Import"> | ||
</button> | ||
<input type="file" id="fileInput" accept=".txt,.json" style="display: none;"> | ||
</div> | ||
<div class="option-row"> | ||
<input type="text" id="codebookSearch" placeholder="Search codebook..."> | ||
</div> | ||
<textarea id="codebookText" placeholder="Enter your codebook here..."></textarea> | ||
<div id="codebookPhraseCount" class="phrase-count">Phrases: 0</div> | ||
</section> | ||
</div> | ||
<script src="../js/popout.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
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
Oops, something went wrong.