ircchat/style.css

66 lines
1015 B
CSS
Executable File

@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
html { height: 700px; }
body {
font-family: "Ubuntu Mono", Arial, sans-serif;
font-size: 14px;
background: #020202;
color:#f3f3f3;
margin: 0 auto;
width: 730px;
min-width: 730px;
min-height: 700px;
max-height: 700px;
overflow: scroll;
}
.info {
padding: 2px;
font-size: 18px;
text-align: center;
}
.logout { padding: 5px; text-align: center; }
a {
color: #0080ff;
text-decoration: none;
}
a:hover {
color: #0099ff;
text-decoration: underline;
}
input, button, select, textarea{
background-color: #222222;
border: solid 1px #323232;
outline: none;
border-radius: 6px;
color: #d7d7d7;
padding: 4px;
}
.login {
text-align: center;
}
.text { font-size: 14px; }
#msgbox {
background-color: #323232;
border: solid 1px #454545;
padding: 2px;
margin: 0 auto;
}
#msgs {
background-color: #323232;
border: solid 1px #454545;
padding: 8px;
height: 420px;
margin: 0 auto;
overflow-y: scroll;
}