Add comments to renderer stylesheet and use Verdana instead of Arial

This commit is contained in:
chylex 2016-10-27 15:44:43 +02:00
parent 178c230d2c
commit 35aa3c2724

View File

@ -1,5 +1,5 @@
body {
font-family: Whitney, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-family: Whitney, "Helvetica Neue", Helvetica, Verdana, "Lucida Grande", sans-serif;
line-height: 1;
margin: 0;
padding: 0;
@ -12,6 +12,10 @@ body {
height: 100vh;
}
/********
* MENU *
********/
#menu {
width: 15vw;
min-width: 215px;
@ -38,6 +42,10 @@ body {
cursor: pointer;
}
/****************
* CHANNEL LIST *
****************/
#channels > div {
cursor: pointer;
color: #eee;
@ -72,6 +80,10 @@ body {
font-size: 11px;
}
/************
* MESSAGES *
************/
#messages {
flex: 1 1 0;
height: 100vh;
@ -106,6 +118,10 @@ body {
letter-spacing: 0;
}
/*******************
* MESSAGE CONTENT *
*******************/
#messages .message {
margin-top: 6px;
color: rgba(255, 255, 255, 0.7);