glowingbear-mainbox/css/glowingbear.css

174 lines
2.4 KiB
CSS
Raw Normal View History

html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -25px;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 25px;
}
input#sendMessage {
border: 0;
width: 100%;
}
2013-10-12 20:44:40 +02:00
table {
width: 100%;
}
2013-10-12 11:49:14 +02:00
td.time {
2013-10-12 02:37:11 +02:00
padding-right: 5px;
}
2013-10-12 11:49:14 +02:00
td.prefix {
2013-10-12 02:37:11 +02:00
text-align: right;
vertical-align: middle;
padding-right: 5px;
}
2013-10-12 12:18:05 +02:00
td.message {
word-wrap: break-word;
2013-10-12 20:44:40 +02:00
width: 100%;
}
2013-10-12 21:06:24 +02:00
hr {
2013-10-12 20:44:40 +02:00
margin: 0;
2013-10-12 21:06:24 +02:00
border-color: darkgreen;
2013-10-12 12:18:05 +02:00
}
.text {
white-space: pre;
2013-10-12 12:18:05 +02:00
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
2013-10-02 01:39:24 +02:00
body {
2013-10-11 01:16:13 +02:00
color: #ddd;
background-color: #222;
2013-10-11 00:51:18 +02:00
padding-left: 0;
2013-10-07 01:56:26 +02:00
padding-right: 5px;
padding-bottom:70px;
}
2013-10-09 17:53:25 +02:00
input#sendMessage {
border: 0;
width: 100%;
}
2013-10-11 00:51:18 +02:00
#sidebar {
position: fixed;
width: 12%;
min-height: 100%;
height: 100%;
min-width: 130px;
overflow: auto;
background: #282828;
}
2013-10-07 16:58:41 +02:00
.content {
height: 100%;
min-height: 100%;
}
2013-10-12 02:37:11 +02:00
.bufferlines {
font-family: monospace;
2013-10-07 16:58:41 +02:00
overflow-y: auto;
2013-10-11 00:51:18 +02:00
margin-left: 14%;
width: auto;
position: relative;
2013-10-12 02:37:11 +02:00
padding-bottom: 55px;
2013-10-02 01:39:24 +02:00
}
.navbar-fixed-bottom {
2013-10-11 00:51:18 +02:00
margin: 0 5px 0 14%;
}
@media (max-width: 968px) {
#sidebar, .bufferlines {
position: relative;
min-height: 0;
margin-left: 0;
max-width: 100%;
border: 0;
}
#sidebar {
width: 100%;
text-align: center;
}
.navbar-fixed-bottom {
margin: 0 5px 0 5px;
}
}
2013-10-04 20:19:28 +02:00
.color-light-green {
color: chartreuse;
}
.color-27 {
color: deepskyblue;
}
.danger {
background-color: rgb(217, 83, 79);
}
2013-10-04 20:19:28 +02:00
.color-28 {
color: greenyellow;
}
.color-00 {
color: coral;
}
.color-yellow {
color: yellow;
}
.color-dark-red {
color: darkred;
}
.color-dark-green {
color: green;
}
.color-dark-blue {
color: darkblue;
}
.color-dark-gray {
color: gray;
}
.color-gray {
color: lightgray;
}
.color-brown {
color: brown;
}
.color-cyan {
color: cyan;
}
.color-dark-cyan {
color: darkcyan;
}
2013-10-02 01:39:24 +02:00
li.notification {
color: green;
2013-10-11 00:51:18 +02:00
}
2013-10-11 23:38:30 +02:00