107 lines
2.4 KiB
CSS
107 lines
2.4 KiB
CSS
/*
|
|
* @package AJAX_Chat
|
|
* @author Sebastian Tschan
|
|
* @author Philip Nicolcev
|
|
* @copyright (c) Sebastian Tschan
|
|
* @license GNU Affero General Public License
|
|
* @link https://blueimp.net/ajax/
|
|
*
|
|
* Blue Style by nookls
|
|
* nookls.org
|
|
*/
|
|
|
|
@import url('meta.modern.ajaxchat.css');
|
|
|
|
@media screen,projection,handheld {
|
|
|
|
/* Buttons */
|
|
#content #bbCodeContainer input, #content #logoutChannelContainer input, #content #submitButton, #loginForm #loginButton {
|
|
background-color:#002545;
|
|
color:#f0f0f0;
|
|
border: 1px solid #808080;
|
|
background-image: linear-gradient(to bottom, #002545, #000);
|
|
background-image: -moz-linear-gradient(to bottom, #002545, #000);
|
|
background-image: -webkit-linear-gradient(top, #002545, #000);
|
|
}
|
|
#content select, #loginForm select, #loginForm input, #content textarea {
|
|
background-color:#002545;
|
|
color:#fafafa;
|
|
border: 1px solid #808080;
|
|
}
|
|
|
|
/* 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 {
|
|
background-color:#002545;
|
|
color:#FFF;
|
|
}
|
|
#loginContent h1 {
|
|
color:#FFF;
|
|
}
|
|
#loginContent a {
|
|
color:#FFF;
|
|
}
|
|
#loginContent input, #loginContent select {
|
|
background-color:#002545;
|
|
color:#FFF;
|
|
}
|
|
#loginContent #errorContainer {
|
|
color:red;
|
|
}
|
|
#content {
|
|
background-color:#002545;
|
|
color:#FFF;
|
|
}
|
|
#content h1 {
|
|
color:#FFF;
|
|
}
|
|
#content a {
|
|
color:#FFF;
|
|
}
|
|
#content #chatList, #content #onlineListContainer, #content #helpContainer, #content #settingsContainer, #content #colorCodesContainer, #content textarea {
|
|
border-color:#003D8E;
|
|
background-color:#002545;
|
|
}
|
|
#content #colorCodesContainer a {
|
|
border-color:#003D8E;
|
|
}
|
|
#content #optionsContainer input {
|
|
background-color:transparent;
|
|
}
|
|
#content .rowEven {
|
|
background-color:#0D355D;
|
|
}
|
|
#content .rowOdd {
|
|
background-color:#002545;
|
|
}
|
|
#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:#0D355D;
|
|
color:#FFF;
|
|
}
|
|
}
|