various talking and improvements

This commit is contained in:
Galen Wolfe-Pauly 2015-01-26 17:59:39 -08:00
parent e4cfbaba47
commit 10f447ef13
2 changed files with 11 additions and 4 deletions

View File

@ -139,9 +139,12 @@ body {
width: 8rem;
margin-bottom: 0.3rem;
cursor: pointer;
text-transform: capitalize;
font-weight: 200;
}
#stations .station {
display: block;
width: 24rem;
}
.station .name {
border-bottom: 6px solid transparent;
}
@ -274,7 +277,7 @@ body {
margin: 0;
font-weight: 200;
font-size: 2rem;
text-transform: capitalize;
text-transform: lowercase;
}
input.join {
font-size: 4rem;
@ -298,6 +301,7 @@ input.join:focus::-webkit-input-placeholder {
}
a.up {
height: 2rem;
margin-top: 0.6rem;
vertical-align: middle;
display: inline-block;
}

View File

@ -50,7 +50,10 @@ module.exports = {
statement: {
bouquet: [],
speech: {
say: message
lin: {
say: false,
txt: message
}
},
date: Date.now()
}
@ -224,7 +227,7 @@ Message = recl({
}, this.convTime(this.props.thought.statement.date))
]), div({
className: "mess"
}, this.props.thought.statement.speech.say)
}, this.props.thought.statement.speech.lin.txt)
]);
}
});