Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Projects/EncryptedChatUsingBasicCypherAlgo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wassup chat app</title>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="style.css" />
</head>

<body>
<section class="chat__section">
<div class="brand">
<section class="chat__section" style="border-radius: 25px">
<div class="brand" style="border-radius: 25px">
<img height="40" src="/wassup.png" alt="" />
<h1>Wassup</h1>
</div>
<center>
<center style="border-radius: 25px">
<h5>
NAME: <span id="nameid"></span> &nbsp;&nbsp;Key:
<span id="keyid"></span>
</h5>
</center>
<div class="message__area"></div>
<div>
<textarea
<div class="message__area" style="border-radius: 25px"></div>
<div style="border-radius: 25px">
<textarea style="border-radius: 25px"
id="textarea"
cols="30"
rows="1"
Expand Down
22 changes: 19 additions & 3 deletions Projects/EncryptedChatUsingBasicCypherAlgo/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ body {
align-items: center;
justify-content: center;
min-height: 100vh;
background: #F8F8F8;
background: #070707;
font-family: 'Roboto', sans-serif;
}
section.chat__section {
Expand All @@ -19,12 +19,19 @@ section.chat__section {
background: #fff;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
section.chat__section:hover{
background:rgb(59, 111, 255);
}
.brand {
padding: 20px;
background: #f1f1f1;
background: #FBFBFB;
display: flex;
align-items: center;
}
.brand:hover{
background: #070707;
color:white
}
.brand h1 {
text-transform: uppercase;
font-size: 20px;
Expand All @@ -39,6 +46,9 @@ section.chat__section {
overflow-y: auto;
padding-top: 40px;
}
.message__area:hover{
background:rgb(59, 111, 255);
}
textarea {
width: 100%;
border: none;
Expand All @@ -47,14 +57,20 @@ textarea {
outline: none;
background: #FBFBFB;
}

textarea:hover{
background: #070707;
color:white;
}
.message {
padding: 20px;
border-radius: 4px;
margin-bottom: 40px;
max-width: 300px;
position: relative;
}
.message:hover{
background:rgb(59, 111, 255);
}
.incoming {
background: #8F8BE8;
color: #fff;
Expand Down