123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- html,body{
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- overflow: hidden;
- }
- .unselectable{
- cursor: default;
- }
- .fill{
- width: 100%;
- height: 100%;
- }
- .unselectable,#tabs-list div.tab{
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .close-button{
- float: right;
- font-weight: bold;
- font-size: 24px;
- margin-top: -5px;
- font-family: Arial,Liberation Sans,DejaVu Sans,sans-serif;
- }
- .close-button:hover{
- color: red;
- }
- #head{
- right: 0;
- top: 0;
- width: 100%;
- height: 40px;
- border-bottom-style: solid;
- background-color: white;
- transition: height 0.3s;
- z-index: 10;
- }
- #info{
- display: table;
- width: 100%;
- }
- #title{
- display: table-cell;
- }
- #topic{
- display: table-cell;
- text-align: right;
- }
- #content{
- width: 100%;
- height: calc(100% - 61px);
- top: 41px;
- left: 0;
- }
- #settings,#users{
- bottom: 0;
- height: 18px;
- background-color: white;
- border-left-style: solid;
- border-top-style: solid;
- margin-top: -1px;
- transition: width 0.5s, height 0.5s, right 0.5s;
- }
- #settings span,#users span{
- cursor: pointer;
- }
- #users{
- right: 0;
- width: 36px;
- z-index: 1;
- }
- #settings{
- width: 52px;
- border-right-style: solid;
- right: 36px;
- }
- #settings.hovered,#users.hovered{
- height: 21px;
- }
- #settings.open,#users.open{
- width: 150px;
- height: 100%;
- right: 0;
- z-index: 20;
- }
- #settings.open{
- width: 100%;
- }
- #entry{
- width: 100%;
- border-top-style: solid;
- height: 18px;
- bottom: 0;
- }
- #input{
- width: calc(100% - 126px);
- height: 16px;
- margin: 0;
- padding: 1px;
- border-style: none;
- background-color: grey;
- clear: none;
- bottom: 0;
- left: 0;
- }
- #send{
- clear: none;
- bottom: 0;
- right: 88px;
- width: 36px;
- padding: 0;
- margin: 0;
- height: 18px;
- border-style: none;
- border-left-style: solid;
- background-color: white;
- transition: background-color 0.2s;
- }
- #send:hover{
- background-color: grey;
- }
- #send.clicked{
- background-color: red;
- }
- #content,#head,#users,#entry,#input,#send,#settings{
- border-color: black;
- border-width: 1px;
- overflow: hidden;
- position: absolute;
- }
- #users,#input,#send,#settings{
- position: fixed;
- }
- #content-list,#users-list,#settings-list,#tabs-list{
- width: 100%;
- height: 100%;
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: auto;
- }
- #tabs-list{
- width: calc(100% - 42px);
- height: 20px;
- position: absolute;
- left: 0;
- top: 20px;
- overflow: hidden;
- }
- #tabs-list div.tab{
- float: left;
- min-width: 100px;
- max-width: 200px;
- height: 19px;
- overflow: hidden;
- position: relative;
- }
- #tabs-list div.tab.clicked{
- background-color: lightgrey;
- }
- #tabs-scroll-left{
- position: absolute;
- right: 20px;
- top: 20px;
- height: 20px;
- width: 20px;
- }
- #tabs-scroll-right{
- position: absolute;
- right: 0;
- top: 20px;
- height: 20px;
- width: 20px;
- }
- #tabs-list div.tab, #tabs-scroll-right,#tabs-scroll-left{
- border-style: solid;
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
- border-color: black;
- border-top-style: solid;
- border-right-style: solid;
- border-left-style: solid;
- border-bottom-style: none;
- border-width: 1px;
- padding: 0;
- margin: 0;
- background-color: white;
- cursor: pointer;
- clear: none;
- }
- #tabs-list div.tab:hover, #tabs-scroll-right:hover,#tabs-scroll-left:hover{
- background-color: grey;
- }
- #tabs-scroll-left.disabled, #tabs-scroll-right.disabled{
- background-color: lightgrey;
- }
|