Few updates

This commit is contained in:
abrendan 2023-11-30 21:31:44 +00:00
parent a0fcb6333e
commit dd077c9364
2 changed files with 32 additions and 7 deletions

View File

@ -37,7 +37,8 @@
<input id = "ComposedMessage" type = "text">
<input id = "SendMessage" onclick="Send()" value = "Send your message" class = "Button" type = "submit">
</div>
<p>It was made using Replit's Socket.io template.</p>
<p>Made by abrendan. Visit my website for more of my projects.</p>
<a href='https://abrendan.dev/' class="sitebutton">abrendan.dev</a>
<br><br>
</div>
</body>

View File

@ -1,6 +1,9 @@
body{
background: #343434;
color: #ff0000;
background-image: url('https://i.ibb.co/zhPZBTt/luke-chesser-Cx-Bx-J3yp9g-unsplash.jpg'); /* Path to your example image */
background-size: cover; /* Cover the entire viewport */
background-repeat: no-repeat; /* Do not repeat the image */
background-attachment: fixed; /* The background image does not scroll */
color: #000000;
font-family: 'Segoe UI';
}
@ -11,18 +14,39 @@ label{
}
input{
background: #aa0000;
color: #000000;
background: #000000;
color: #db65fb;
font-size: 120%;
border: none;
}
.Message{
color: #b30000;
color: #000000;
}
#Title{
font-size: 300%;
}
}
.sitebutton {
background-color:transparent;
border-radius:28px;
border:1px solid #db65fb;
display:inline-block;
cursor:pointer;
color:#000000;
font-family:Arial;
font-size:17px;
padding:16px 31px;
text-decoration:none;
text-shadow:0px 1px 0px #000000;
}
.sitebutton:hover {
background-color:transparent;
}
.sitebutton:active {
position:relative;
top:1px;
}