Skip to content
Permalink
c1ebc9a4cd
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
164 lines (157 sloc) 2.93 KB
*{
box-sizing: border-box;
}
body{
background-color: white;
color: black ;
font-family: 'Advent Pro';
overflow: hidden;
}
h1{
text-align: center;
text-align: center;
background-color: lightcoral;
padding: 1em;
border-radius: 40px;
color: white;
font-size: 15px;
display: -webkit-box;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: space-between;
}
#chatBox{
width: 100%;
position: absolute;
bottom: 50px;
right: 0px;
left: 0px;
top: 60px;
overflow-y: auto;
margin-bottom: 40px;
margin-top: 20px;
}
#chatInput{
position: fixed;
bottom: 0px;
width: 100%;
background-color: lightcoral;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
height: 80px;
padding: .5em;
margin-top: 30px;
}
#sendBtn{
font-family: 'Advent Pro';
background-color: white;
border: lightcoral;
border-radius: 30px;
}
#newMsg{
font-family: 'Advent Pro';
background-color: white;
border: lightcoral;
border-radius: 30px;
}
#sendBtn:hover{
background-color: lightseagreen;
}
p{
text-align: 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;
}
/* visited link */
a:visited {
color: white;
text-decoration: none;
}
/* mouse over link */
h1:hover{
color:white;
background-color: lightseagreen;
text-decoration: none;
}
/* selected link */
a:active {
color: coral;
text-decoration: none;
}
.box{
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.smallImage {
width:20px;
}
span{
padding-left: 3px;
padding-right: 3px;
}
#usernameInput{
background-color: lightcoral;
font-family: 'Advent Pro';
color: white;
border-radius: 30px;
padding: 1em;
border: none;
}
#statusInput{
background-color: lightcoral;
font-family: 'Advent Pro';
color: white;
border-radius: 30px;
padding: 1em;
border: none;
}
#profilePicInput{
background-color: lightcoral;
font-family: 'Advent Pro';
color: white;
border-radius: 30px;
border: none;
}
.button{
background-color: lightcoral;
padding: 1em;
font-family: 'Advent Pro';
border-radius: 40px;
color: white;
font-size: 15px;
border: none;
}