mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 20:55:00 +02:00
53 lines
977 B
CSS
53 lines
977 B
CSS
body{
|
|
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';
|
|
}
|
|
|
|
label{
|
|
width: 5%;
|
|
display: inline-block;
|
|
text-align: right;
|
|
}
|
|
|
|
input{
|
|
background: #000000;
|
|
color: #db65fb;
|
|
font-size: 120%;
|
|
border: none;
|
|
}
|
|
|
|
.Message{
|
|
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;
|
|
}
|