1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/ui/chatArea/innerStyle.css
Nils Fenner 989b15e656 fix(chat): cleanup chat css base style
fix chat area's inner stylesheet
note: the base font is never a bold font (respects html tags: e.g. <b>bold text</b>)

fix block colors:
* action -> blue
* alert -> red
* quote -> green
2016-07-10 13:43:50 +02:00

36 lines
375 B
CSS

body {
font: @baseFont;
}
p {
white-space: pre-wrap;
}
.action {
color: #1818FF;
font-style: italic;
}
.typing {
color: @mediumGreyLight;
}
.quote {
color: #279419;
}
.alert {
margin-left: 0px;
margin-right: 0px;
background-color: @orange;
}
.alert_name {
background-color: @orange;
font: @bigBold;
}
a {
color: blue;
}