-
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.
Bot uses the keywords from the user input box.
Bot uses the keywords from the user input box above. Ask for a random key in the input box below.
- Loading branch information
1 parent
0e2a248
commit be80f7a
Showing
60 changed files
with
615 additions
and
921 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
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,114 @@ | ||
|
||
.chatbot-container { | ||
width: 80%; | ||
margin: 0 auto; | ||
background-color: white; | ||
} | ||
|
||
#chatbot { | ||
background-color: white; | ||
} | ||
|
||
#header { | ||
background-color: white; | ||
color: #ffffff; | ||
padding: 20px; | ||
font-size: 1em; | ||
font-weight: bold; | ||
} | ||
|
||
message-container { | ||
background: gray; | ||
width: 100%; | ||
height: 20px; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
|
||
|
||
#conversation { | ||
height: 30px; | ||
overflow-y: auto; | ||
padding: 50px; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
@keyframes message-fade-in { | ||
from { | ||
opacity: 0; | ||
transform: translateY(-20px); | ||
} | ||
to { | ||
opacity: 1; | ||
transform: translateY(0); | ||
} | ||
} | ||
/* edges */ | ||
.nodes { | ||
display: flex; | ||
align-items: flex-start; | ||
position: relative; | ||
font-size: 15px; | ||
line-height: 20px; | ||
|
||
word-wrap: break-word; | ||
white-space: pre-wrap; | ||
max-width: 100%; | ||
padding: 15px; | ||
} | ||
|
||
.user-message { | ||
justify-content: flex-end; | ||
} | ||
|
||
|
||
.edges { | ||
font-size: 1.1em; | ||
top: 15px; | ||
} | ||
|
||
#input-form { | ||
|
||
|
||
border: 1px solid black; | ||
margin: 0px; | ||
padding: 0px; | ||
position: fixed; | ||
top: 150px; | ||
left: 75px; | ||
|
||
width: 55%; | ||
|
||
} | ||
|
||
#nodes { | ||
flex: 1; | ||
height: 60px; | ||
border: 1px solid #7f9bbe; | ||
border-radius: 4px; | ||
padding: 0 10px; | ||
font-size: 14px; | ||
transition: border-color 0.3s; | ||
background: white; | ||
color: #000000; | ||
border: none; | ||
} | ||
|
||
p[sentTime]:hover::after { | ||
content: attr(sentTime); | ||
position: absolute; | ||
top: -3px; | ||
font-size: 14px; | ||
color: gray; | ||
} | ||
|
||
.chatbot p[sentTime]:hover::after { | ||
|
||
left: 15px; | ||
} | ||
|
||
.user-message p[sentTime]:hover::after { | ||
right: 15px; | ||
} |
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,3 @@ | ||
|
||
<!DOCTYPE html><html lang="en"><head><meta name="viewport"content="width=device-width"><title>Pi</title><link rel="stylesheet" href="./css/merge.css" /></link></head><body><center><fieldset><legend><ahref="./Pi.html">Pi</a></legend><form class="form-group"action="../action.php"method="post"><input type="text"class="form-control"id="secure-form-answer-Human"type="text"name="secure-form-answer"maxlength="40"autocomplete="true"autocorrect="off"autocapitalize="off"spellcheck="true"placeholder="what word defines this word"required><noscript><labelfor="secure-form-answer-Human">Human</label></noscript></form><br><a href="../index.html">return to homepage</a><br><br><a href="../delete.php?action=delete&filename=./en/Pi.html">delete this page</a><br><br><article>Pi definitions go here</article></fieldset></center></body></html> | ||
|
Oops, something went wrong.