-
Notifications
You must be signed in to change notification settings - Fork 300
/
MyBB.css
109 lines (106 loc) · 2.24 KB
/
MyBB.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
* @package AJAX_Chat
* @author Sebastian Tschan
* @author Philip Nicolcev
*
* Color palette inspired by MyBB style "MyBB Default":
* http://www.mybb.com/
*/
@import url('global.css');
@import url('fonts.css');
@import url('print.css');
@import url('custom.css');
/* Buttons */
#content #bbCodeContainer input, #content #logoutButton, #content #submitButton, #loginForm #loginButton {
background-color:#02619f;
color:#fff;
font-weight: bold;
border: 0px solid #02619f;
border-radius: 5px;
}
#content select, #loginForm select, #loginForm input, #content textarea {
color:#333333;
border: 1px solid #02619f;
border-radius: 5px;
}
/* Status Icon */
#content #statusIconContainer {
background: url('../img/loading-sprite.png') no-repeat 0px 0px;
}
#content #statusIconContainer.waiting {
background-position: 0px -22px;
}
#content #statusIconContainer.retrying {
background-position: 0px -44px;
}
/* Other Theme Elements */
.ajax-chat {
background-color:#FFF;
color:#000;
}
.ajax-chat h1 {
color:#000;
}
.ajax-chat a {
color:#000;
}
#loginContent #errorContainer {
color:red;
}
#content input, #content select, #content textarea {
background-color:#FFF;
color:#000;
}
#content #chatList, #content #onlineListContainer, #content #helpContainer, #content #settingsContainer, #content #colorCodesContainer {
border-color:#ADADAD;
background-color:#E5E5E8;
}
.ajax-chat .popup {
border:1px solid #ADADAD;
background-color:#E5E5E8;
}
#content #colorCodesContainer a {
border-color:black;
}
#content #optionsContainer input {
background-color:transparent;
}
#content .rowEven, #content .rowOdd {
background-color:#EFEFEF;
border-bottom: 1px solid #bdccf7;
}
#content #chatList .private {
background-color:#F8D0D0;
border-bottom:1px solid #ED3950;
}
#content .guest {
color:gray;
}
#content .user {
color:#000;
}
#content .customUser {
color:#02619f;
}
#content .moderator {
color:#0000FF;
}
#content .admin {
color:#FF0000;
}
#content .chatBot {
color:#476C8E;
}
#content #chatList .chatBotErrorMessage {
color:red;
}
#content #chatList a {
color:#476C8E;
}
#content #chatList .deleteSelected {
border-color:red;
}
#content #onlineListContainer h3, #content #helpContainer h3, #content #settingsContainer h3 {
background-color:#02619f;
color:#FFF;
}