cryptalk/public/css/default.css

86 lines
1.6 KiB
CSS
Raw Normal View History

2014-09-18 12:21:07 -04:00
/*------------------------------------*\
GENERIC
\*------------------------------------*/
html {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
*, *:before, *:after {
box-sizing: inherit;
font-family: monospace, 'Courier New';
font-size: 12px;
}
body, html {
min-height: 100%;
2014-09-21 05:21:31 -04:00
min-width: 600px;
2014-09-18 12:21:07 -04:00
background-color: #000000;
overflow: hidden;
padding: 0px;
margin:0px;
color: #00DD00;
}
/*------------------------------------*\
CHAT
\*------------------------------------*/
#chat {
left: 0;
right: 0;
bottom: 40px;
position: absolute;
list-style-type: none;
padding:0;
margin:0;
}
/* Messages */
#chat li {
white-space: pre;
2014-09-18 15:38:15 -04:00
padding: 2px 15px;
2014-09-19 13:25:16 -04:00
color: #343434;
2014-09-18 12:21:07 -04:00
}
/* Message types */
/* the `i` element hold the actual message */
#chat i {
font-style: normal;
}
2014-09-18 15:38:15 -04:00
#chat i.motd { color: #99FF99; display:inline-block; line-height: 12px !important; }
#chat i.info { color: #999999; }
2014-09-19 13:25:16 -04:00
#chat i.server { color: #99FFFF; }
2014-09-18 12:21:07 -04:00
#chat i.error { color: #ff7777; }
#chat i.message { color: #eeeeee; }
2014-09-19 13:25:16 -04:00
#chat i.nick { color: #99FF99; }
2014-09-21 13:53:57 -04:00
#chat i.fatal { color: #ff7777; }
2014-09-18 12:21:07 -04:00
/*------------------------------------*\
INPUT
\*------------------------------------*/
#input_wrapper {
right:0;
bottom:0;
left:0;
position: absolute;
2014-09-18 15:38:15 -04:00
height:30px;
2014-09-18 12:21:07 -04:00
}
#input {
top: 0;
bottom: 0;
width: 100%;
position: absolute;
border: 0;
outline: 0;
padding: 5px 5px 5px 15px;
2014-09-18 15:38:15 -04:00
color: #FFFFFF;
2014-09-18 12:21:07 -04:00
background-color:#141414;
2014-09-21 10:33:52 -04:00
height:30px;
2014-09-18 12:21:07 -04:00
}