111 lines
2.4 KiB
CSS
111 lines
2.4 KiB
CSS
|
/*
|
||
|
* @package AJAX_Chat
|
||
|
* @author Sebastian Tschan
|
||
|
* @copyright (c) Sebastian Tschan
|
||
|
* @license GNU Affero General Public License
|
||
|
* @link https://blueimp.net/ajax/
|
||
|
*
|
||
|
* Color palette inspired by phpBB style "prosilver":
|
||
|
* http://www.phpbb.com/
|
||
|
*/
|
||
|
|
||
|
@import url('meta.legacy.ajaxchat.css');
|
||
|
|
||
|
/*
|
||
|
* Colors
|
||
|
*/
|
||
|
|
||
|
@media screen,projection,handheld {
|
||
|
|
||
|
#loginContent {
|
||
|
background-color:#F9F9F9;
|
||
|
color:#28313F;
|
||
|
}
|
||
|
#loginContent h1 {
|
||
|
color:#333333;
|
||
|
}
|
||
|
#loginContent a {
|
||
|
color:#333333;
|
||
|
}
|
||
|
#loginContent input, #loginContent select {
|
||
|
background-color:#FFF;
|
||
|
color:#333333;
|
||
|
}
|
||
|
#loginContent #loginFormContainer #loginButton {
|
||
|
background-color:#F7F5F1;
|
||
|
color:#333333;
|
||
|
}
|
||
|
#loginContent #errorContainer {
|
||
|
color:red;
|
||
|
}
|
||
|
|
||
|
#content {
|
||
|
background-color:#F9F9F9;
|
||
|
color:#28313F;
|
||
|
}
|
||
|
#content h1 {
|
||
|
color:#333333;
|
||
|
}
|
||
|
#content a {
|
||
|
color:#333333;
|
||
|
}
|
||
|
#content input, #content select, #content textarea {
|
||
|
background-color:#FFF;
|
||
|
color:#333333;
|
||
|
}
|
||
|
#content #chatList, #content #onlineListContainer, #content #helpContainer, #content #settingsContainer, #content #bbCodeContainer, #content #colorCodesContainer, #content #emoticonsContainer {
|
||
|
border-color:#105289;
|
||
|
background-color:#FFF;
|
||
|
}
|
||
|
#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;
|
||
|
}
|
||
|
#content #bbCodeContainer input, #content #logoutButton, #content #submitButton {
|
||
|
background-color:#F7F5F1;
|
||
|
color:#333333;
|
||
|
}
|
||
|
#content #colorCodesContainer a {
|
||
|
border-color:black;
|
||
|
}
|
||
|
#content #optionsContainer input {
|
||
|
background-color:transparent;
|
||
|
}
|
||
|
#content .rowEven {
|
||
|
background-color:#E1EBF2;
|
||
|
}
|
||
|
#content .rowOdd {
|
||
|
background-color:#ECF3F7;
|
||
|
}
|
||
|
#content #chatList .chatBotErrorMessage {
|
||
|
color:red;
|
||
|
}
|
||
|
#content #chatList a {
|
||
|
color:#D31141;
|
||
|
}
|
||
|
#content #chatList .delete {
|
||
|
background:url('../images/delete.png') no-repeat right;
|
||
|
}
|
||
|
#content #chatList .deleteSelected {
|
||
|
border-color:red;
|
||
|
}
|
||
|
#content #onlineListContainer h3, #content #helpContainer h3, #content #settingsContainer h3 {
|
||
|
background-color:#E1EBF2;
|
||
|
color:#105289;
|
||
|
}
|
||
|
#content #settingsContainer #settingsList input.playback {
|
||
|
background:url('../images/playback.png') no-repeat;
|
||
|
}
|
||
|
|
||
|
#content .user {
|
||
|
color: #000;
|
||
|
}
|
||
|
}
|