sliding-sync/client/styles.css

153 lines
2.1 KiB
CSS
Raw Normal View History

body {
font-family: Arial, Helvetica, sans-serif;
}
.page {
max-width: 960px;
margin: 0 auto;
2021-10-06 13:20:26 +01:00
display: flex;
height: 100%;
}
.header {
margin: 5px;
}
2022-02-24 15:03:10 +00:00
.statsheader {
2022-02-22 18:24:35 +00:00
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
#txrx {
background-color: black;
color: white;
}
2021-10-06 13:20:26 +01:00
.leftSide {
display: flex;
background: #f7f7f7;
2021-10-06 13:20:26 +01:00
flex-direction: column;
height: 100%;
width: 50%;
}
.rightSide {
2021-10-07 10:28:53 +01:00
display: flex;
flex-direction: column;
2021-10-06 13:20:26 +01:00
margin: 5px;
background: #f7f7f7;
height: 100%;
width: 50%;
}
2022-02-24 15:03:10 +00:00
#roomlistcontainer {
max-height: 100%;
display: grid;
}
2021-10-07 10:28:53 +01:00
#messages {
overflow: scroll;
}
.roomlist {
overflow: scroll;
background: #f7f7f7;
}
2021-11-11 13:00:32 +00:00
.roomlistwrapper {
overflow: scroll;
background: #f7f7f7;
2021-11-11 13:00:32 +00:00
border-left: 1px solid #8d99a5;
border-right: 1px solid #8d99a5;
}
2022-02-24 15:03:10 +00:00
.roomlistname {
2021-11-11 13:00:32 +00:00
position: sticky;
top: 0;
background: #8d99a5;
text-align: center;
padding: 2px;
color: #fff;
}
.roomcell {
padding: 5px;
display: flex;
align-items: center;
cursor: pointer;
border-bottom: 1px solid #8d99a5;
height: 40px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.roomavatar {
width: 32px;
height: 32px;
margin-right: 6px;
}
.roomtimestamp {
color: #737d8c;
font-size: small;
}
.roomsender {
color: #737d8c;
font-size: small;
}
.roomcontent {
font-size: small;
}
2021-10-08 14:35:14 +01:00
.unreadcountnotify {
background: #d0d0d0;
padding: 2px;
font-weight: bold;
}
.unreadcounthighlight {
background: #f33;
color: #fff;
2021-10-08 14:35:14 +01:00
padding: 2px;
font-weight: bold;
}
.msgheader {
display: flex;
align-items: center;
justify-content: space-between;
margin: 5px 5px 0px 5px;
}
.msgsender {
color: #737d8c;
font-size: small;
}
.msgtimestamp {
color: #737d8c;
font-size: x-small;
}
.msgcontent {
font-size: small;
}
#selectedroomtopic {
font-size: x-small;
2022-02-24 15:03:10 +00:00
border: 1px solid;
padding: 5px;
}
#roomfooter {
margin: 5px;
}
#sendmessageinput {
width: 100%;
}