129 lines
2.7 KiB
CSS
129 lines
2.7 KiB
CSS
|
/*
|
||
|
* @package AJAX_Chat
|
||
|
* @author Sebastian Tschan
|
||
|
* @author Philip Nicolcev
|
||
|
* @copyright (c) Sebastian Tschan
|
||
|
* @license Modified MIT License
|
||
|
* @link https://blueimp.net/ajax/
|
||
|
*/
|
||
|
|
||
|
@import url('meta.legacy.ajaxchat.css');
|
||
|
@import url('meta.terminal.ajaxchat.css');
|
||
|
|
||
|
@media screen,projection,handheld {
|
||
|
|
||
|
/* Buttons */
|
||
|
#content #bbCodeContainer input, #content input, #content #submitButton, #loginForm #loginButton {
|
||
|
background-color:#000;
|
||
|
color:#00ff2b;
|
||
|
border: 1px solid #00ff2b;
|
||
|
font-family:monospace;
|
||
|
}
|
||
|
#content select, #loginForm select, #loginForm input, #content textarea {
|
||
|
background-color:#000;
|
||
|
color:#00ff2b;
|
||
|
border: 1px solid #00ff2b;
|
||
|
font-family:monospace;
|
||
|
}
|
||
|
|
||
|
/* Status Icon */
|
||
|
#content #statusIconContainer {
|
||
|
background-image: url('../images/loading-sprite.png');
|
||
|
}
|
||
|
#content .statusContainerOff {
|
||
|
background-position: 0px 0px;
|
||
|
}
|
||
|
#content .statusContainerOn {
|
||
|
background-position: 0px -22px;
|
||
|
}
|
||
|
#content .statusContainerAlert {
|
||
|
background-position: 0px -44px;
|
||
|
}
|
||
|
|
||
|
/* Other Theme Elements */
|
||
|
#loginContent {
|
||
|
background-color:#000;
|
||
|
color:#FFF;
|
||
|
}
|
||
|
#loginContent h1 {
|
||
|
color:#FFF;
|
||
|
}
|
||
|
#loginContent a {
|
||
|
color:#FFF;
|
||
|
}
|
||
|
#loginContent input, #loginContent select {
|
||
|
background-color:#212121;
|
||
|
color:#FFF;
|
||
|
}
|
||
|
#loginContent #errorContainer {
|
||
|
color:red;
|
||
|
}
|
||
|
#content {
|
||
|
background-color:#000;
|
||
|
color:#00ff2b;
|
||
|
}
|
||
|
#content h1 {
|
||
|
color:#00ff2b;
|
||
|
}
|
||
|
#content a {
|
||
|
color:#00ff2b;
|
||
|
}
|
||
|
#content #onlineListContainer, #content #helpContainer, #content #settingsContainer, #content #colorCodesContainer, #content textarea {
|
||
|
border-color:#00ff2b;
|
||
|
background-color:#000;
|
||
|
}
|
||
|
|
||
|
#content #chatList {
|
||
|
color:#00ff2b;
|
||
|
}
|
||
|
|
||
|
#content #colorCodesContainer a {
|
||
|
border-color:black;
|
||
|
}
|
||
|
#content #optionsContainer input {
|
||
|
background-color:transparent;
|
||
|
}
|
||
|
#content .rowEven {
|
||
|
background-color:#000;
|
||
|
}
|
||
|
#content .rowOdd {
|
||
|
background-color:#000;
|
||
|
}
|
||
|
#content .guest {
|
||
|
text-shadow:0px 0px 5px gray;
|
||
|
}
|
||
|
#content .user {
|
||
|
text-shadow:0px 0px 5px #FFF;
|
||
|
}
|
||
|
#content .moderator {
|
||
|
text-shadow:0px 0px 5px #0A0;
|
||
|
}
|
||
|
#content .admin {
|
||
|
text-shadow:0px 0px 5px #A00;
|
||
|
}
|
||
|
#content .chatBot, #content .bots {
|
||
|
text-shadow:0px 0px 5px #9E8DA7;
|
||
|
}
|
||
|
#content .purple {
|
||
|
text-shadow:0px 0px 5px #824CA0;
|
||
|
}
|
||
|
#content .cmod {
|
||
|
text-shadow:0px 0px 5px #09F;
|
||
|
}
|
||
|
#content .donator {
|
||
|
text-shadow:0px 0px 5px #EE9400;
|
||
|
}
|
||
|
#content #chatList .chatBotErrorMessage {
|
||
|
color:red;
|
||
|
}
|
||
|
#content #chatList a {
|
||
|
color:#1E90FF;
|
||
|
}
|
||
|
#content #chatList .deleteSelected {
|
||
|
border-color:red;
|
||
|
}
|
||
|
#content #onlineListContainer h3, #content #helpContainer h3, #content #settingsContainer h3 {
|
||
|
background-color:#000;
|
||
|
color:#00ff2b;
|
||
|
}
|
||
|
}
|