Files
MinecraftChat/public/css/style.css
T
2015-04-28 02:01:29 -05:00

53 lines
765 B
CSS
Executable File

body {
padding-top: 80px;
}
#buffer {
font-family: 'Source Code Pro';
position: absolute;
top: 51px;
bottom: 40px;
left: 0;
right: 0;
color: #D6D6D6;
padding: 0 20px;
}
#chat {
position: absolute;
bottom: 0;
left: 0;
right: 100px;
height: 40px;
background: #171717;
}
#send {
position: absolute;
bottom: 0;
right: 0;
height: 40px;
width: 100px;
}
#chat input {
background: none;
border: none;
width: 100%;
height: 40px;
padding: 0 10px;
font-size: 15px;
}
#chat input:focus {
outline: none;
}
#send input {
width: 100%;
height: 100%;
border: none;
background: #264369;
color: #fff;
text-align: center;
padding: 0 10px;
position: relative;
z-index: 100;
}
#send input:focus {
outline: none;
}