FLO_Twitter/app/web/styles.css
sairajzero cd31d9c267 Added messaging feature
Now users can send and receive messages directly.
The messages are stored only in the browser IDB.
The messages are encrypted and signed by sender.
2019-07-18 03:04:22 +05:30

81 lines
1.4 KiB
CSS

.nav-pills-custom>li>a {
color: lightgrey;
}
.nav-pills-custom>li>a:focus,
.nav-pills-custom>li>a:hover {
background: none;
color: grey;
}
.panel-custom>.panel-heading {
background: none;
border-bottom: none;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
background-color: #337AB7;
}
.form-control-nav{
background-color:#F0FFFF;
border: lightgrey solid 1px;
border-radius:15px;
}
body{
background-color: #F0FFFF;
}
.navbar-default .navbar-collapse, .navbar-default{
background-color: white;
}
.panel-footer{
background-color: lightcyan;
}
.well{
background-color: lightcyan;
}
a{
color:#60A6C1;
}
div.panel-heading{
padding-top:15px;
padding-bottom: 0px;
}
.form-control-feedback{
line-height:27px;
}
.panel-info{
border:1px lightgrey solid;
}
.timestamp{
color : grey;
}
#msgsContainer{
overflow-y: auto;
height: calc(100% - 220px);
}
.msg-R{
float: left;
width: auto !important;
height: auto;
background: lightcyan;
border-radius: 10px 10px 10px 0;
padding: 4px 10px 7px !important;
font-size: 12px;
display: inline-block;
word-wrap: break-word;
}
.msg-S {
float: right;
width: auto !important;
height: auto;
background: lightcyan;
border-radius: 10px 10px 0 10px;
padding: 4px 10px 7px !important;
font-size: 12px;
display: inline-block;
word-wrap: break-word;
}