Skip to content
Permalink
0ea69528d9
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
executable file 243 lines (198 sloc) 3.7 KB
* {
box-sizing: border-box;
}
body {
background-color: #c4c4c4;
color:black;
width: 100vw;
margin: 0px;
padding: 0px;
max-height: 100vh;
overflow: hidden;
font-family: 'Josefin Sans', sans-serif;
}
a{
text-decoration: none;
color: black;
}
#burger ~ nav {
background-color: #3e2fae;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100px;
z-index: 3;
transition: .5s;
transition-delay: .01s;
overflow: hidden;
}
nav{
background-color: #3e2fae;
display: flex;
justify-content: space-around;
}
nav a{
align-self: center;
}
nav h2{
margin: 0px;
align-self: center;
color: white;
font-size: 1.4em
}
#profilePic {
width: 200px;
height: 200px;
border-radius: 50%;
background-color: darkgray;
display: flex;
align-items: center;
justify-content: center;
}
.pfp{
padding-bottom: 50px;
}
.Me {
color: black;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: space-between;
text-align: right;
font-family: 'Josefin Sans', sans-serif;
}
.Me > .people{
color:black;
padding-right: 20px;
font-size: 1em;
margin: 0;
font-family: 'Josefin Sans', sans-serif;
}
#chatbox{
width: 100%;
height: 90vh;
overflow: auto;
background: #fff;
padding: 5vw;
padding-top: 110px;
}
div{
display: flex;
justify-content: space-between;
text-align: left;
font-family: 'Josefin Sans', sans-serif;;
}
div > span > h4{
font-size: 10px;
opacity: 50%;
margin:0;
}
div > span > h2{
font-family: 'Josefin Sans', sans-serif;
font-size: 1em;
margin-bottom: 4px;
}
div:not(.Me) > span > p{
margin-top: 5px;
margin-right: 0;
background-color: #f9d861;
border-radius: 8px;
border-top-left-radius: 0;
padding-left: 15px;
padding-right: 15px;
font-size: 15px;
padding-top: 8px;
padding-bottom: 8px;
}
.Me > span > p{
margin-top: 5px;
text-align: left;
background-color:#3e2fae;
-webkit-border-radius: 8x;
-webkit-border-top-right-radius: 0;
-moz-border-radius: 8px;
-moz-border-radius-topright: 0;
border-radius: 8px;
border-top-right-radius: 0;
padding-left: 15px;
padding-right: 15px;
font-size: 15px;
padding-top: 8px;
padding-bottom: 8px;
color: #fff;
}
.Me > span > h2{
font-family: 'Josefin Sans', sans-serif;
}
#chatinbox{
position: absolute;
width:100%;
height: 10%;
background-color: #eee;
padding: 20px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
#chatinbox > #newmsg {
width: 88%;
font-size: 1em;
display: flex;
align-items: center;
justify-content: center;
border:2px solid #3e2fae;
font-family: 'Josefin Sans', sans-serif;
margin-right: 10px;
}
#newmsg {
background-color: white;
border-radius: 10px;
padding-right: 10px;
}
/* #sendBtn {
color:#3e2fae;
border-radius: 50%;
outline: none;
display: flex;
align-items: center;
justify-content: center;
padding-right: 2px;
} */
header{
width: 50px;
padding: 10px;
margin: 10px;
}
.center{
display: flex;
flex-direction: column;
padding: 0;
justify-content: center;
align-items: center;
}
.center > p{
background-color: #fff;
padding: 15px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
width: 200px;
}
input{
display: flex;
justify-content: center;
border: none;
width: 100%;
padding: 10px;
}
#profileSaveInput{
margin-top: 10px;
padding: 10px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background-color: rgb(112, 112, 175);
color: white;
}