This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
chromesoul/chromesoul.css

206 lines
2.9 KiB
CSS
Raw Normal View History

/*
* Page itself
*/
body {
margin: 0;
padding: 0;
background: #347db0 url(img/chromesoul-logo.png) no-repeat 10px 10px;
}
/*
* Top menu
*/
#user-status {
position: fixed;
right: 285px;
top: 10px;
margin: 0;
padding: 0;
width: 150px;
}
#settings-btn {
position: fixed;
right: 222px;
top: 10px;
margin: 0;
padding: 0;
}
/*
* Contact list
*/
#contact-lst-wrapper {
2012-11-26 15:32:01 +01:00
position: fixed;
right: 0;
top: 0;
margin: 0;
2012-11-26 15:32:01 +01:00
padding: 0 5px 0 5px;
width: 200px;
height: 100%;
border-left: 1px solid #aaa;
background-color: #e4e4e4;
box-shadow: 0px 0px 10px #666;
overflow-y: scroll;
2012-11-26 15:32:01 +01:00
}
#contact-lst {
margin: 15px 0 0 0;
padding: 0;
list-style: none;
}
#contact-lst > li {
margin: 5px 0 0 0;
padding: 5px 5px 5px 28px;
2012-11-26 15:32:01 +01:00
border: 1px solid #aaa;
background-size: 23px 26px;
background-repeat: no-repeat;
}
#add-contact::-webkit-input-placeholder {
color: rgba(52, 125, 176, 0.42);
}
#add-contact {
padding: 2px;
outline: 0px solid #aaa;
width: 184px;
height: 20px;
margin: 5px 0 0 0;
}
#add-contact, #contact-lst > li {
box-shadow: inset 0px 0px 1px #666;
background-color: #f3f3f3;
border: 1px solid #347db0;
color: #347db0;
font-family: monospace;
2012-11-26 15:32:01 +01:00
}
.remove {
float: right;
font-family: sans-serif;
font-size: 12px;
cursor: pointer;
}
/*
* Main content
*/
#main-ctn {
margin: 135px 0 0 0;
padding: 10px 220px 10px 10px;
2012-11-26 15:32:01 +01:00
min-width: 400px;
}
/*
* Tabs
*/
2012-11-14 17:47:12 +01:00
#tab-lst {
margin: 0;
padding: 0;
list-style: none;
}
#tab-lst > li {
display: inline;
margin: 0;
2012-11-15 01:45:45 +01:00
padding: 2px 10px 2px 10px;
2012-11-14 17:47:12 +01:00
border-top: 1px solid #aaa;
border-right: 1px solid #aaa;
border-radius: 8px 8px 0 0;
color: #aaa;
2012-11-27 23:53:15 +01:00
cursor: pointer;
2012-11-14 17:47:12 +01:00
}
2012-11-15 01:45:45 +01:00
#tab-lst > li > span::selection {
background: transparent;
}
2012-11-14 17:47:12 +01:00
#tab-lst > li:first-child {
border-left: 1px solid #aaa;
}
#tab-lst > li.tab-current {
color: black;
}
#tab-lst > li.tab-active {
color: red;
}
#tab-body-wrapper {
margin: 1px 0 5px 0;
padding: 0;
border: 1px solid #aaa;
}
.tab-body {
margin: 5px;
}
/*
* Chat
*/
2012-11-14 17:47:12 +01:00
.chat-log {
margin: 0;
2012-11-27 23:53:15 +01:00
padding: 2px 5px 2px 0;
2012-11-14 17:47:12 +01:00
height: 268px;
outline: 1px solid #aaa;
overflow-y: scroll;
2012-11-27 23:53:15 +01:00
font-family: monospace;
2012-11-14 17:47:12 +01:00
}
.chat-input-wrapper {
padding-right: 2px;
}
.chat-input {
padding: 0px;
outline: 0px solid #aaa;
2012-11-26 15:32:01 +01:00
width: 100%;
height: 20px;
margin: 5px 0 0 0;
}
.chat-input:focus {
2012-11-26 15:32:01 +01:00
outline-offset: 0;
2012-11-14 17:47:12 +01:00
}
.spk-oth {
color: red;
2012-11-15 01:45:45 +01:00
}
.spk-me {
color: blue;
2012-11-15 01:45:45 +01:00
}
/*
* Scrollbar
*/
2012-11-21 21:13:18 +01:00
::-webkit-scrollbar {
width: 10px;
height: 10px;
background-color: green;
2012-11-21 21:13:18 +01:00
}
::-webkit-scrollbar-track-piece {
background-color: #e4e4e4;
2012-11-21 21:13:18 +01:00
}
2012-11-27 10:28:08 +01:00
::-webkit-scrollbar-thumb {
height: 40px;
background-color: #347db0;
border-left: 1px solid #e4e4e4;
border-right: 1px solid #e4e4e4;
2012-11-27 10:28:08 +01:00
}