mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
375c9657ce
Action messages are now italicized. Pro (1): style action messages centered and italicized
43 lines
451 B
CSS
43 lines
451 B
CSS
p {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
p.msg {
|
|
color: @black;
|
|
font: @big;
|
|
}
|
|
|
|
p.action {
|
|
color: #1818FF;
|
|
font: @big;
|
|
font-style: italic;
|
|
}
|
|
|
|
p.typing {
|
|
color: @mediumGreyLight;
|
|
font: @big;
|
|
}
|
|
|
|
span.quote {
|
|
color: #279419;
|
|
}
|
|
|
|
p.alert {
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
color: @black;
|
|
background-color: @orange;
|
|
font: @big;
|
|
}
|
|
|
|
p.alert_name {
|
|
color: @black;
|
|
background-color: @orange;
|
|
font: @bigBold;
|
|
}
|
|
|
|
a {
|
|
color: blue;
|
|
}
|
|
|