mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
989b15e656
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
36 lines
375 B
CSS
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;
|
|
}
|