Update README.md

This commit is contained in:
Eric Lay 2025-05-03 21:37:49 -05:00
parent df8d46a508
commit 64243b19ee
1 changed files with 59 additions and 49 deletions

108
README.md
View File

@ -1,60 +1,52 @@
```css ```css
.logo-container {
display: none;
}
textarea#user-specified-css-input { textarea#user-specified-css-input {
height: 400px; height: 400px;
width: 600px; width: 600px;
} }
#sidebar {
background: #262626;
}
#sidebar .networks { #sidebar .networks {
padding: 10px 0; padding: 10px 0;
} }
#sidebar .network { #sidebar .network {
margin-bottom: 10px; margin-bottom: 0;
}
#chat {
background: #434343;
} }
#chat .userlist { #chat .userlist {
width: 150px; width: 160px;
background: #262626;
}
#chat .names {
background: #262626;
}
#chat .toggle-text {
background: #262626;
}
#chat .userlist .user.active {
background: #434343;
}
#chat .userlist .count {
background: #434343;
} }
#chat .user-mode::before { #chat .user-mode::before {
padding: 8px 0 0; padding: 8px 4px;
margin-bottom: 0; margin-bottom: 0;
background: #434343; font-size: medium;
} }
#chat .user-mode::before.active {
background: #262626; .channel-list-item {
} padding: 5px 15px;
#chat .userlist .search,
#windows #form .input {
background: #262626;
} }
#chat .content, #chat .content,
#chat .header, #chat .header,
#chat .userlist { #chat .userlist {
border-color: #262626; border-color: #262626;
} }
.channel-list-item {
padding: 5px 15px; #chat .names,
#chat .toggle-text,
#chat .userlist,
#chat .userlist .search,
.mentions-popup {
background: #262626;
} }
#sidebar-overlay { #chat .user-mode::before.active {
background: #434343; background: #262626;
} }
.channel-list-item[data-type="lobby"].active, .channel-list-item[data-type="lobby"].active,
.channel-list-item[data-type="lobby"]:hover, .channel-list-item[data-type="lobby"]:hover,
.channel-list-item[data-type="channel"].active, .channel-list-item[data-type="channel"].active,
@ -62,25 +54,43 @@ textarea#user-specified-css-input {
.channel-list-item[data-type="query"].active, .channel-list-item[data-type="query"].active,
.channel-list-item[data-type="query"]:hover, .channel-list-item[data-type="query"]:hover,
.channel-list-item[data-type="special"].active, .channel-list-item[data-type="special"].active,
.channel-list-item[data-type="special"]:hover { .channel-list-item[data-type="special"]:hover,
background: #434343; #chat,
} #chat .userlist .user.active,
#form { #chat .user-mode::before,
background: #616161; #chat .userlist .count,
}
.logo-container {
display: none;
}
#footer .icon:hover, #footer .icon:hover,
#footer .icon.settings.active, #footer .icon.settings.active,
#footer .icon.connect.active, #footer .icon.connect.active,
#footer .icon.help.active { #footer .icon.help.active,
background: #434343; .input[type="search"],
#settings,
#sidebar-overlay {
background: #434343;
} }
#viewport {
background: #262626; .from,
.time,
.condensed-summary {
background: #292929;
} }
#settings {
background: #434343; #form,
.header {
background: #616161;
} }
.scroll-down-arrow {
background: #292929;
}
#sidebar {
background: #262626;
}
#viewport,
#windows #form .input {
background: #262626;
}
``` ```