mirror of https://github.com/nealey/microchat.git
28 lines
326 B
CSS
28 lines
326 B
CSS
body {
|
|
font-family: Roboto, sans-serif;
|
|
}
|
|
|
|
#chatlog {
|
|
height: 15em;
|
|
max-width: 80em;
|
|
overflow: scroll;
|
|
}
|
|
|
|
input[name="who"] {
|
|
width: 6em;
|
|
}
|
|
|
|
.when {
|
|
color: #888;
|
|
min-width: 10em;
|
|
font-size: small;
|
|
}
|
|
|
|
.who {
|
|
margin: auto 0.8em;
|
|
color: blue;
|
|
min-width: 5em;
|
|
display: inline-block;
|
|
text-align: right;
|
|
}
|