Update theme.css
This commit is contained in:
parent
91bd8d7971
commit
076cad9657
19
theme.css
19
theme.css
|
@ -42,6 +42,7 @@
|
||||||
html {
|
html {
|
||||||
scrollbar-color: #00ffcc #1b1b1b;
|
scrollbar-color: #00ffcc #1b1b1b;
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
|
font-size: 16px; /* Increased font size for better readability */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide Logos */
|
/* Hide Logos */
|
||||||
|
@ -67,6 +68,7 @@ kbd {
|
||||||
border-color: #00ffcc;
|
border-color: #00ffcc;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
font-size: 1rem; /* Increased font size */
|
||||||
}
|
}
|
||||||
|
|
||||||
#context-menu,
|
#context-menu,
|
||||||
|
@ -117,6 +119,7 @@ kbd {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
transition: background 0.3s ease;
|
transition: background 0.3s ease;
|
||||||
|
font-size: 1rem; /* Match font size with general text */
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .show-more .btn:hover {
|
#chat .show-more .btn:hover {
|
||||||
|
@ -126,11 +129,20 @@ kbd {
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-reconnect {
|
.btn-reconnect {
|
||||||
background: #e74c3c;
|
background: #1b1b1b; /* Updated to match the rest of the buttons */
|
||||||
color: #f0f0f0;
|
color: #00ffcc;
|
||||||
border: 0;
|
border: 2px solid #00ffcc;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
text-transform: uppercase;
|
||||||
|
transition: background 0.3s ease;
|
||||||
|
padding: 10px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-reconnect:hover {
|
||||||
|
background-color: #00ffcc;
|
||||||
|
color: #121212;
|
||||||
|
box-shadow: 0px 0px 20px #00ffcc, 0px 0px 30px #00ffcc, 0px 0px 40px #00ffcc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Footer */
|
/* Footer */
|
||||||
|
@ -149,6 +161,7 @@ kbd {
|
||||||
body {
|
body {
|
||||||
background-color: #121212;
|
background-color: #121212;
|
||||||
color: #f0f0f0;
|
color: #f0f0f0;
|
||||||
|
font-size: 1rem; /* Increased font size */
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .self {
|
#chat .self {
|
||||||
|
|
Loading…
Reference in New Issue