h1 {
font-size: 15px;
}
#my-users {
display: none;
}
#my-users > select {
padding: 5px;
}
#timeoutSec {
float: right
}
#message {
font-size: 90%;
color: gray;
}
#response input {
width: 90%;
padding: 10px;
margin: 10px 5%;
box-sizing: border-box;
}
.action {
text-align: center;
margin: 10px;
}
.action span {
padding: 10px 15px;
line-height: 100%;
font-weight: bold;
font-size: 20px;
border-radius: 3px;
box-shadow: 0px 0px 3px;
display: inline-block;
}
.action .enable:hover {
opacity: 0.7;
cursor: pointer;
box-shadow: 0px 0px 1px;
}
.action img {
height: 32px;
vertical-align: middle;
padding: 5px;
}
.accept {
border: 1px solid green;
background: linear-gradient(0deg, #c8e6c9, white);
color: darkgreen;
margin-right: 20px;
}
.reject {
border: 1px solid red;
background: linear-gradient(0deg, pink, white);;
color: darkred;
}
.selected {
box-shadow: 0px 0px 3px black inset !important;
cursor: not-allowed;
}
.accept.selected{
background: linear-gradient(180deg, #c8e6c9, #bbff6d);
}
.reject.selected{
background: linear-gradient(180deg, pink, #ffa6c4);
}
.disabled {
opacity: 0.3;
cursor: not-allowed;
}