fchat-rising/less/character_page.less

243 lines
4.5 KiB
Plaintext

.character-page-avatar {
height: 100px;
width: 100px;
}
// Inline images
.inline-image {
max-width: 100%;
height: auto;
}
.character-page {
.character-name {
font-size: @font-size-h3;
font-weight: bold;
}
.character-title {
font-size: @font-size-small;
font-style: italic;
}
.edit-link {
margin-left: 5px;
margin-top: @line-height-base;
}
.character-links-block {
a {
padding: 0 4px;
cursor: pointer;
}
}
.badges-block, .contact-block, .quick-info-block, .character-list-block {
margin-top: 15px;
}
}
.badges-block {
.character-badge {
background-color: @character-badge-bg;
border: 1px solid @character-badge-border;
border-radius: @border-radius-base;
.box-shadow(inset 0 1px 1px rgba(0, 0, 0, .05));
&.character-badge-subscription-lifetime {
background-color: @character-badge-subscriber-bg;
border: 2px dashed @character-badge-subscriber-border;
font-weight: bold;
}
}
}
.infotags {
> .infotag-group {
.infotag-title {
font-size: @font-size-h4;
}
}
}
.infotag {
.infotag-label {
font-weight: bold;
}
.infotag-value {
.force-word-wrapping();
}
}
.contact-method {
.contact-value {
.force-word-wrapping();
margin-left: 5px;
}
}
.quick-info-block {
.quick-info-label {
font-weight: bold;
}
}
.character-kinks {
display: flex;
flex-wrap: wrap;
margin-top: 15px;
> div {
// Fix up padding on columns so they look distinct without being miles apart.
padding: 0 5px 5px 0;
}
.kinks-column {
padding: 15px;
border: 1px solid @well-border;
border-radius: @border-radius-base;
> .kinks-header {
font-size: @font-size-h4;
}
}
}
.character-kink {
position: relative;
.subkink-list {
.well();
margin-bottom: 0;
padding: 5px 15px;
cursor: default;
}
.subkink-list.closed {
display: none;
}
&.subkink {
cursor: pointer;
}
.comparison-active {
border: 1px solid @quick-compare-active-border;
}
&.comparison-favorite {
.comparison-active();
background-color: @quick-compare-favorite-bg;
}
&.comparison-yes {
.comparison-active();
background-color: @quick-compare-yes-bg;
}
&.comparison-maybe {
.comparison-active();
background-color: @quick-compare-maybe-bg;
}
&.comparison-no {
.comparison-active();
background-color: @quick-compare-no-bg;
}
&.highlighted {
font-weight: bolder;
}
}
#character-page-sidebar {
background-color: @well-bg;
height: 100%;
margin-top: -20px;
.character-image-container {
@media (max-width: @screen-xs-max) {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
}
}
}
@media (min-width: @screen-sm-min) {
.profile-body {
padding-left: 0;
}
}
// Character Images
.character-images {
.character-image {
.col-xs-2();
.img-thumbnail();
max-width: 100%;
vertical-align: middle;
border: none;
display: inline-block;
background: transparent;
img {
.center-block();
}
}
}
// Guestbook
.guestbook {
.guestbook-pager {
display: inline-block;
width: 50%;
}
.guestbook-avatar {
float: left;
}
.guestbook-contents {
.well();
&.deleted {
.alert-warning();
}
}
.guestbook-reply {
&:before {
content: "Reply ";
font-weight: bold;
}
.reply-message {
.well();
.alert-info();
}
}
}
#character-friends {
.character-friend {
display: inline-block;
margin: 5px;
}
}
.image-preview {
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
img {
padding: 5px;
background: white;
z-index: 1100;
max-height: 100%;
max-width: 100%;
}
}
.friend-item {
display: flex;
align-items: center;
.date {
margin-left: 10px;
flex:1;
}
}