Skip to content

Instantly share code, notes, and snippets.

@iiiGerardoiii
Last active December 29, 2023 19:53
Show Gist options
  • Save iiiGerardoiii/4cf890b7f26660518611ea7e375193d9 to your computer and use it in GitHub Desktop.
Save iiiGerardoiii/4cf890b7f26660518611ea7e375193d9 to your computer and use it in GitHub Desktop.
css config for thelounge
.irc-bold {
text-shadow: 0 0 2px;
font-weight: 400;
}
#windows #form, .messages .msg, .userlist {
font-family: "fixedsys excelsior beta","hack",roboto;
font-size: 16px;
-moz-osx-font-smoothing: grayscale;
}
#chat .date-marker .unread-marker {
font-family: "fixedsys excelsior beta";
font-size: 16px;
-moz-osx-font-smoothing: grayscale;
font-weight: 200;
}
/* Show MrMoose drawings properly */
#chat .msg[data-from="MrMoose"] .time,
#chat .msg[data-from="MrMoose"] .from,
#chat .msg[data-from="MrMoose"] .content {
margin-top: 0px;
margin-bottom: -5px;
line-height: 10px;
}
/* Messages density */
#chat .time,
#chat .from,
#chat .content {
padding-top: 0px;
padding-bottom: 0px;
line-height:1;
}
/* Add <> on nicks */
.messages .from .user:before {
opacity: 0.5;
content: "<";
}
.messages .from .user:after {
opacity: 0.5;
content: ">";
}
/* Hide thelounge logo on sidebar */
#sidebar .logo-container {
display: none;
}
/* Compact sidebar */
#sidebar .channel-list-item {
padding: 3px 15px !important;
}
#chat .msg[data-from="PorygonZ"] div.preview {
display: none;
}
#chat .msg[data-from="zuck"] div.preview {
display: none;
}
#chat .msg[data-from="brak"] div.preview {
display: none;
}
#chat .msg[data-from="bewbies"] div.preview {
display: none;
}
#chat .msg[data-from="bewbs"] div.preview {
display: none;
}
#chat .msg[data-from="confuse"] div.preview {
display: none;
}
#chat .msg[data-from="MrMoose"] div.preview {
display: none;
}
:root {
--body-color: #aaaaaa;
/*--body-bg-color: #252525;*/
--body-bg-color: #000;
/*--window-bg-color: #1f1f1f;*/
--window-bg-color: #000;
--highlight-bg-color: #3D3431;
}
/* Transparent join/quit/mode/nick messages */
#chat .msg[data-type="join"],
#chat .msg[data-type="away"],
#chat .msg[data-type="back"],
#chat .msg[data-type="part"],
#chat .msg[data-type="mode"],
#chat .msg[data-type="nick"],
#chat .msg[data-type="quit"] {opacity: 0.3;}
/* Message form */
#form {
/*background-color: #303030;*/
background-color: #000;
border-color: #303030;
color: var(--body-color);
}
/* Borders */
#chat .content,
#chat .header,
#chat .user-mode::before,
#chat .userlist {
border-color: #303030;
}
/* User list */
#chat .userlist .user.active {
background-color: #303030;
}
#chat .userlist .count {
background-color: #303030;
}
#chat .time {
color: #4E4E4E;
}
/*No nick indentation*/
#chat .content {
padding-left: 0;
}
#chat .messages {
display: block;
padding: 5px 10px;
}
#chat .msg:last-child {
height: auto;
}
#chat .time {
display: inline;
}
#chat .from,
#chat .text {
background: none;
border: 0;
display: inline;
}
#chat .from::after{
display:none;
}
#chat .from {
width: auto;
padding-left: 5px;
padding-right: 5px;
}
#chat .wrap {
display: inline;
}
/* compact userlist */
#chat .userlist .names {
padding-top: 20px;
}
#chat .names .user {
line-height: 1;
}
#chat .user-mode::before {
line-height: 5px;
padding-left: 15px;
padding-top: 1px;
font-size: 16px;
opacity: 0.3;
}
#sidebar {
width: 150px;
}
#sidebar .chan, #sidebar .empty {
padding: 5px 15px;
font-family: "fixedsys excelsior beta";
font-size: 16px;
-moz-osx-font-smoothing: grayscale;
font-weight: 200;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment