|
|
|
/**************************************
|
|
|
|
********************* PROFILE PHOTO ***
|
|
|
|
***************************************/
|
|
|
|
.profile-card
|
|
|
|
{
|
|
|
|
padding: 7px;
|
|
|
|
background: rgba( 255, 255, 255, .5 );
|
|
|
|
border: solid 1px rgba( 69, 71, 77, .05 );
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.profile-card-main
|
|
|
|
{
|
|
|
|
width: 540px;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
transition: all .2s linear;
|
|
|
|
}
|
|
|
|
.profile-card-main:before
|
|
|
|
{
|
|
|
|
content: "";
|
|
|
|
border: solid 0px #fff;
|
|
|
|
transition: all .2s linear;
|
|
|
|
position: absolute;
|
|
|
|
left: 1px;
|
|
|
|
top: 1px;
|
|
|
|
right: 1px;
|
|
|
|
bottom: 1px;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
.profile-card-main *
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
.profile-card-photo
|
|
|
|
{
|
|
|
|
width: 74px;
|
|
|
|
height: 74px;
|
|
|
|
border: solid 6px #45474d;
|
|
|
|
border-radius: 40%;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
box-sizing: content-box;
|
|
|
|
float:left;
|
|
|
|
top: 50%;
|
|
|
|
background-color: #a12a28;
|
|
|
|
|
|
|
|
}
|
|
|
|
.profile-card-main h1
|
|
|
|
{
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.profile-card-main h2
|
|
|
|
{
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.profile-card .direct-messages,
|
|
|
|
.profile-card .direct-messages-with-user,
|
|
|
|
.profile-card .follow,
|
|
|
|
.profile-card .profileUnfollow
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 20px;
|
|
|
|
right: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 12px;
|
|
|
|
width: 120px;
|
|
|
|
text-align: center;
|
|
|
|
color: rgba( 0, 0, 0, .7 );
|
|
|
|
background: rgba( 0, 0, 0, .1 );
|
|
|
|
border: none;
|
|
|
|
transition: all .2s linear;
|
|
|
|
}
|
|
|
|
.profile-card .follow,
|
|
|
|
.profile-card .profileUnfollow
|
|
|
|
{
|
|
|
|
right: 135px;
|
|
|
|
}
|
|
|
|
.profile-card .profileUnfollow
|
|
|
|
{
|
|
|
|
background-color: rgba( 0, 0, 0, .3 );
|
|
|
|
}
|
|
|
|
.profile-card .direct-messages:hover,
|
|
|
|
.profile-card .direct-messages-with-user:hover,
|
|
|
|
.profile-card .follow:hover
|
|
|
|
{
|
|
|
|
background: rgba( 0, 0, 0, .3 );
|
|
|
|
}
|
|
|
|
.profile-card .profileUnfollow:hover
|
|
|
|
{
|
|
|
|
background: rgba( 0, 0, 0, .1 );
|
|
|
|
}
|
|
|
|
.profile-card.forEdition
|
|
|
|
{
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 540px;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-photo
|
|
|
|
{
|
|
|
|
border: solid 2px #fff;
|
|
|
|
border-radius: 0%;
|
|
|
|
float:none;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all .2s linear;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main:hover:after,
|
|
|
|
.forEdition .profile-card-photo:after
|
|
|
|
{
|
|
|
|
content: "";
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
background: url(../img/edit.png) no-repeat right top;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main:hover:before
|
|
|
|
{
|
|
|
|
border: solid 5px #fff;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main h2
|
|
|
|
{
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main input
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
background: rgba( 0, 0, 0, .1 );
|
|
|
|
border: none;
|
|
|
|
padding: 6px 4px;
|
|
|
|
color: #fff;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
text-align: center;
|
|
|
|
transition: all .2s linear;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main input:hover,
|
|
|
|
.forEdition .profile-card-main input:focus,
|
|
|
|
.forEdition .profile-card-photo:hover
|
|
|
|
{
|
|
|
|
background: rgba( 0, 0, 0, .3 );
|
|
|
|
}
|
|
|
|
.input-description
|
|
|
|
{
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
.input-name
|
|
|
|
{
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main .input-website,
|
|
|
|
.forEdition .profile-card-main .input-city
|
|
|
|
{
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.forEdition .profile-card-main .input-tox,
|
|
|
|
.forEdition .profile-card-main .input-bitmessage
|
|
|
|
{
|
|
|
|
width: 90%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.profile-edition-buttons
|
|
|
|
{
|
|
|
|
padding: 10px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
/*************************************
|
|
|
|
****************** PROFILE MODAL
|
|
|
|
**************************************/
|
|
|
|
.profile-modal .modal-wrapper
|
|
|
|
{
|
|
|
|
width: 580px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
top:10%;
|
|
|
|
height: 80%;
|
|
|
|
margin-left: -300px;
|
|
|
|
|
|
|
|
}
|
|
|
|
.profile-modal .modal-content
|
|
|
|
{
|
|
|
|
padding: 3px;
|
|
|
|
height: 90%;
|
|
|
|
}
|
|
|
|
#msngrswr {
|
|
|
|
display: none;
|
|
|
|
margin-top: 20px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
#toxbtnwr, #bmbtnwr {
|
|
|
|
float: left;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.bitmessage-ctc, .tox-ctc {
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
border: 1px solid #d6d8dc;
|
|
|
|
background: #e3e5ea url(img/clipboard.png) center no-repeat;
|
|
|
|
opacity: .8;
|
|
|
|
-webkit-border-radius: 0 5px 5px 0;
|
|
|
|
-moz-border-radius: 0 5px 5px 0;
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
-webkit-transition: all 20ms;
|
|
|
|
-moz-transition: all 20ms;
|
|
|
|
-ms-transition: all 20ms;
|
|
|
|
-o-transition: all 20ms;
|
|
|
|
transition: all 20ms;
|
|
|
|
}
|
|
|
|
.bitmessage-ctc:hover, .tox-ctc:hover {
|
|
|
|
background-color: #f0f2f8;
|
|
|
|
opacity: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.bitmessage-ctc:active, .tox-ctc:active {
|
|
|
|
background-color: #edfced;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-tox, .profile-modal .profile-bitmessage {
|
|
|
|
display: inline-block;
|
|
|
|
width: 70px;
|
|
|
|
height: 30px;
|
|
|
|
border: 1px solid #c0c2c6;
|
|
|
|
opacity: .8;
|
|
|
|
-webkit-border-radius: 5px 0 0 5px;
|
|
|
|
-moz-border-radius: 5px 0 0 5px;
|
|
|
|
border-radius: 5px 0 0 5px;
|
|
|
|
-webkit-transition: all 200ms;
|
|
|
|
-moz-transition: all 200ms;
|
|
|
|
-ms-transition: all 200ms;
|
|
|
|
-o-transition: all 200ms;
|
|
|
|
transition: all 200ms;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-tox:hover, .profile-modal .profile-bitmessage:hover {
|
|
|
|
opacity: 1;
|
|
|
|
background-color: #f0f2f8;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-tox:active, .profile-modal .profile-bitmessage:active {
|
|
|
|
background-color: #edfced;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-tox {
|
|
|
|
background: #e3e5ea url(../img/tox.png) center no-repeat;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-bitmessage {
|
|
|
|
background: #e3e5ea url(../img/bm.png) center no-repeat;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-data
|
|
|
|
{
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: -4px;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
.profile-modal .postboard
|
|
|
|
{
|
|
|
|
margin-left: 0;
|
|
|
|
padding: 5px 0 5px 0;
|
|
|
|
height: 75%;
|
|
|
|
}
|
|
|
|
.profile-modal .postboard h2
|
|
|
|
{
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.profile-modal .postboard-posts
|
|
|
|
{
|
|
|
|
display: block;
|
|
|
|
height: 90%;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-card-main
|
|
|
|
{
|
|
|
|
background: #45474d;
|
|
|
|
color: white;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-card-main a {
|
|
|
|
color: #8bb9e0;
|
|
|
|
}
|
|
|
|
.profile-modal .postboard-posts .post
|
|
|
|
{
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.profile-modal .post-interactions
|
|
|
|
{
|
|
|
|
margin: 2px 10px 3px 60px;
|
|
|
|
}
|
|
|
|
.profile-modal .profile-card
|
|
|
|
{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
.profile-card-main
|
|
|
|
{
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
.profile-modal .direct-messages,
|
|
|
|
.profile-modal .direct-messages-with-user,
|
|
|
|
.profile-modal .follow,
|
|
|
|
.profile-modal .profileUnfollow
|
|
|
|
{
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1.profile-name {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
h2.profile-screen-name {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-modal .modal-buttons {
|
|
|
|
display: none;
|
|
|
|
}
|