Skip to content
Permalink
44b673bf1b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
284 lines (244 sloc) 4.44 KB
*{
box-sizing: border-box;
}
body{
background-color: white;
color: black ;
overflow: hidden;
}
h1{
text-align: center;
color: black;
font-size: 15px;
display: flex;
align-items: center;
justify-content: space-between;
font-family: 'Raleway', sans-serif;
font-weight: 300;
}
#chatBox{
height: 75vh;
overflow: auto;
margin-top: 20px;
padding: 5%;
}
.Me{
padding-left: 100px;
}
#chatInput{
position: fixed;
bottom: 0px;
width: 100%;
background-color: #E9E4E4;
display: flex;
justify-content: space-between;
height: 70px;
padding: .5em;
}
#sendBtn{
font-family: 'Raleway', sans-serif;
border:none;
background-color: #E9E4E4;
}
.i.fas.fa-paper-plane{
max-width: 50px;
max-height: 50px;
}
#newMsg{
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-size: 20px;
color: #9D909E;
border: none;
background-color: #E9E4E4;
}
#sendBtn:hover{
color: #C8AECA;
}
p{
background-color: #E9E4E4;
border: #707070 1px;
padding: 15px 20px 15px 20px;
font-family: 'Raleway', sans-serif;
font-weight: 300;
margin: 1.5vw !important;
}
#logo{
max-width: 60px;
max-height: 60px;
}
.wrapper{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.user{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
h2{
text-align: center;
margin: .5em;
}
h3{
margin-top: 4px;
margin-bottom: 6px;
font-style: italic;
}
#pic{
max-width: 300px;
max-height: 300px;
}
a:link {
color: white;
text-decoration: none;
text-align: center;
}
/* visited link */
a:visited {
color: white;
text-decoration: none;
text-align: center;
}
/* mouse over link */
/* selected link */
a:active {
color: black;
text-decoration: none;
text-align: center;
}
.box{
display: flex;
justify-content: center;
align-items: center;
}
.smallImage {
max-width: 300px;
max-height: 300px;
border-radius: 300%;
}
span{
padding-left: 3px;
padding-right: 3px;
}
.flex{
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
align-items:center;
}
#usernameInput{
color: #C8AECA;
padding: 1em;
border: none;
}
#statusInput{
color: #C8AECA;
padding: 1em;
border: none;
}
#profilePicInput{
padding: 2px;
}
.profileImage{
border-radius: 100%;
max-width: 150px;
max-height: 150px;
}
.navbar-brand {
padding-left: 10px;
}
.button{
background-color: #C8AECA;
font-family: 'Raleway', sans-serif;
color: white;
font-size: 15px;
border: none;
text-align: center;
padding-top: 15px;
padding-bottom: 15px;
}
div.float {
float: right;
display: flex;
text-align: end;
}
.float{
float: right;
}
.profile{
display: flex;
flex-direction: column;
justify-content: center;
margin: 10px auto;
}
h1.button a{
text-align: center;
padding: 10px;
}
.navbar, .navbar-light {
border-radius: 0;
border: none;
margin-bottom: 0;
min-height: 80px;
background-color: white;
margin-left: 0% !important;
margin-right: 0% !important;
}
.navbar, .navbar-light, .container{
margin-bottom: 30px !important;
margin-right: 0% !important;
margin-left: 0% !important;
padding: 0% !important;
width: 100% !important;
justify-content: flex-start;
position: fixed;
margin-top: 10px;
}
.nav li {
display: inline;
color: black
}
.navbar-light .navbar-nav > li > a {
color: black;
font-size: 30px;
padding: 20px 15px 20px 15px;
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-style: normal;
background-color: white;
}
.navbar-light .navbar-nav li a:hover {
height: 100%;
background-color:#DEBDCE;
transition: ease-in .75s;
color: white;
}
.container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header {
margin-right: auto !important;
margin-left: auto !important;
}
.navbar-toggle .icon-bar {
background-color: black;
}
.nav .navbar-nav .text-left{
align-content: flex-start;
}
.navbar-brand>img {
display: block;
max-height: 100px;
}
@media (max-width:765px){
.navbar-brand {
display: none;
}
}
@media (min-width:780px){
.container {
display: flex;
}
}