96 lines
1.5 KiB
CSS
96 lines
1.5 KiB
CSS
.profile-box {
|
|
min-height: 150px;
|
|
padding: 25px;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.profile-box .profile-picture, .profile-box .group-picture {
|
|
width: 150px;
|
|
height: 150px;
|
|
margin: 0 20px 20px 0;
|
|
}
|
|
|
|
.profile-box .profile-username {
|
|
padding-top: 50px;
|
|
}
|
|
|
|
div.posts {
|
|
padding-top: 20px;
|
|
width: calc(100% + 20px);
|
|
display: inline-flex;
|
|
}
|
|
|
|
div.posts div.post {
|
|
display: block;
|
|
margin: 20px 0 0 0;
|
|
padding: 10px;
|
|
width: calc(100% - 40px);
|
|
}
|
|
|
|
div.posts div.post img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
div.posts .post p.subscript {
|
|
text-align: right;
|
|
font-size: 8pt;
|
|
}
|
|
|
|
/*.posts {*/
|
|
/*z-index: -1;*/
|
|
/*margin-right: 0;*/
|
|
/*width: calc(100% + 15px);*/
|
|
/*}*/
|
|
|
|
/*.post-box {*/
|
|
/*display: inline-flex;*/
|
|
/*margin: 20px 15px 0 0;*/
|
|
/*padding: 25px;*/
|
|
/*background-color: #FFFFFF;*/
|
|
/*}*/
|
|
|
|
/*!* fullscreen *!*/
|
|
/*.post-box {*/
|
|
/*width: calc(25% - 69px);*/
|
|
/*}*/
|
|
|
|
@media only screen and (max-width: 1500px) {
|
|
.post-box {
|
|
width: calc(50% - 68px);
|
|
}
|
|
}
|
|
|
|
/* mobile */
|
|
@media only screen and (max-width: 1000px) {
|
|
.post-box {
|
|
width: calc(100% - 65px);
|
|
}
|
|
}
|
|
|
|
.post {
|
|
width: 100%;
|
|
}
|
|
|
|
.post img {
|
|
width: 100%;
|
|
}
|
|
|
|
.post .post-date {
|
|
float: right;
|
|
color: #aaaaaa;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.profile-button {
|
|
float: right;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
background-color: #845663;
|
|
color: #FFFFFF;
|
|
transition-duration: 250ms;
|
|
}
|
|
|
|
.profile-button:hover {
|
|
background-color: #B78996;
|
|
} |