84 lines
1.0 KiB
CSS
84 lines
1.0 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Helvetica Neue', Helvetica, Verdana, Arial, sans-serif;
|
|
padding: 10px;
|
|
}
|
|
|
|
#disconnect {
|
|
display: none;
|
|
}
|
|
|
|
#unsubscribe {
|
|
display: none;
|
|
}
|
|
|
|
#subscribe {
|
|
display: none;
|
|
}
|
|
|
|
#debug {
|
|
background-color: #F0F0F0;
|
|
font-size: 12px;
|
|
height: 75%;
|
|
overflow: auto;
|
|
padding: 10px;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 10px;
|
|
width: 250px;
|
|
z-index: 100;
|
|
}
|
|
|
|
#send_form {
|
|
bottom: 5px;
|
|
position: absolute;
|
|
width: 99%;
|
|
}
|
|
|
|
#send_form #send_form_input {
|
|
border: 1px solid #CCC;
|
|
font-size: 16px;
|
|
height: 20px;
|
|
padding: 5px;
|
|
width: 98%;
|
|
}
|
|
|
|
#send_form input[disabled] {
|
|
background-color: #EEE;
|
|
}
|
|
|
|
#messages {
|
|
bottom: 25px;
|
|
left: 0;
|
|
overflow: auto;
|
|
padding: 5px;
|
|
right: 0;
|
|
top: 2em;
|
|
z-index: -1;
|
|
}
|
|
|
|
.message {
|
|
width: 95%;
|
|
}
|
|
|
|
form dt {
|
|
clear:both;
|
|
width:19%;
|
|
float:left;
|
|
text-align:right;
|
|
}
|
|
|
|
form dd {
|
|
float:left;
|
|
width:80%;
|
|
margin:0 0 0.5em 0.25em;
|
|
}
|
|
|
|
input {
|
|
width: 320px;
|
|
}
|