Skip to content
Permalink
9851d553a6
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
202 lines (188 sloc) 3.53 KB
*{
box-sizing: border-box;
}
body{
background-color: white;
color: black ;
overflow: hidden;
}
h1{
text-align: center;
color: black;
font-size: 15px;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: space-between;
font-family: 'Raleway', sans-serif;
font-weight: 300;
}
#chatBox{
width: 100%;
position: absolute;
bottom: 50px;
right: 0px;
left: 0px;
top: 120px;
overflow-y: auto;
margin-bottom: 40px;
margin-top: 20px;
}
#chatInput{
position: fixed;
bottom: 0px;
width: 100%;
background-color: #E9E4E4;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
height: 80px;
padding: .5em;
margin-top: 30px;
}
#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;
margin-top: 10px;
margin-bottom: 10px;
font-family: 'Raleway', sans-serif;
font-weight: 300;
}
#logo{
max-width: 50px;
max-height: 50px;
}
.wrapper{
display: -webkit-box;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
}
.user{
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
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: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.smallImage {
max-width: 40px;
max-height: 40px;
}
span{
padding-left: 3px;
padding-right: 3px;
}
#usernameInput{
color: #C8AECA;
padding: 1em;
border: none;
}
#statusInput{
color: #C8AECA;
padding: 1em;
border: none;
}
#profilePicInput{
padding: 2px;
}
.button{
background-color: #C8AECA;
font-family: 'Raleway', sans-serif;
color: white;
font-size: 15px;
border: none;
text-align: center;
}
div.float {
float: right;
display: -webkit-box;
display: flex;
text-align: end;
}
.profile{
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
margin: 10px auto;
}
h1.button a{
text-align: center;
padding: 10px;
}