30 lines
656 B
CSS
30 lines
656 B
CSS
.send_button_1 {
|
|
user-select: none;
|
|
|
|
box-shadow:inset 0px 1px 1px 0px #91b8b3;
|
|
background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
|
|
background-color:#768d87;
|
|
border-radius:5px;
|
|
border:1px solid #566963;
|
|
display:inline-block;
|
|
cursor:pointer;
|
|
color:#1e3038;
|
|
font-family:Arial;
|
|
font-size:15px;
|
|
font-weight:bold;
|
|
font-style:italic;
|
|
padding:4px 12px;
|
|
text-decoration:none;
|
|
text-shadow:0px -1px 1px #2b665e;
|
|
}
|
|
.send_button_1:hover {
|
|
background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
|
|
background-color:#6c7c7c;
|
|
}
|
|
.send_button_1:active {
|
|
position:relative;
|
|
top:1px;
|
|
}
|
|
.send_button_1::before {
|
|
content: 'send!'
|
|
} |