Created
February 10, 2015 16:51
-
-
Save apeniche/2eff6191bf14fac7ffa0 to your computer and use it in GitHub Desktop.
app/main/assets/css/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.conversation{ | |
form{ | |
input{ | |
margin: 10px 0 5px 0; | |
} | |
} | |
} | |
.contact{ | |
width:100%; | |
padding:5px; | |
margin: 4px 0; | |
font-size:15px; | |
cursor:pointer; | |
&:hover{ | |
background-color: #FAFAFA; | |
} | |
&.active{ | |
background-color: #337ab7; | |
color: #FFF; | |
} | |
.badge{ | |
background-color: #900; | |
} | |
} | |
.message{ | |
max-width: 80%; | |
padding:10px 15px; | |
margin: 5px 0; | |
background-color: #FEFEFE; | |
border: 1px solid #E7E7E7; | |
border-radius: 5px; | |
float: left; | |
clear:both; | |
&.sent{ | |
background-color: #E4F3DB; | |
border: 1px solid #B7D0A7; | |
float: right; | |
} | |
p{ | |
margin:0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment