fchat-rising/less/character_page.less

199 lines
3.6 KiB
Plaintext
Raw Normal View History

.character-page-avatar {
2017-09-02 01:50:31 +00:00
height: 100px;
width: 100px;
}
// Inline images
.inline-image {
2017-09-02 01:50:31 +00:00
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 {
cursor: pointer;
}
}
.badges-block,.contact-block,.quick-info-block,.character-list-block {
margin-top: 15px;
}
2017-09-02 01:50:31 +00:00
}
.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));
2017-09-02 01:50:31 +00:00
&.character-badge-subscription-lifetime {
background-color: @character-badge-subscriber-bg;
border: 2px dashed @character-badge-subscriber-border;
font-weight: bold;
}
}
2017-09-02 01:50:31 +00:00
}
.infotags {
> .infotag-group {
.infotag-title {
font-size: @font-size-h4;
}
}
2017-09-02 01:50:31 +00:00
}
.infotag {
.infotag-label {
font-weight: bold;
}
.infotag-value {
.force-word-wrapping();
}
2017-09-02 01:50:31 +00:00
}
.contact-method {
.contact-value {
.force-word-wrapping();
margin-left: 5px;
}
2017-09-02 01:50:31 +00:00
}
.quick-info-block {
.quick-info-label {
font-weight: bold;
2017-09-02 01:50:31 +00:00
}
}
.character-kinks {
margin-top: 15px;
> .col-xs-3 {
// Fix up padding on columns so they look distinct without being miles apart.
padding: 0 5px 0 0;
}
.kinks-column {
padding: 15px;
border: 1px solid @well-border;
border-radius: @border-radius-base;
> .kinks-header {
font-size: @font-size-h4;
}
}
2017-09-02 01:50:31 +00:00
}
.character-kink {
.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;
}
2017-09-02 01:50:31 +00:00
}
#character-page-sidebar {
background-color: @well-bg;
height: 100%;
margin-top: -20px;
2017-09-02 01:50:31 +00:00
}
// Character Images
.character-images {
.character-image {
.col-xs-2();
.img-thumbnail();
vertical-align: middle;
border: none;
display: inline-block;
background: transparent;
img {
.center-block();
}
}
2017-09-02 01:50:31 +00:00
}
// Guestbook
.guestbook {
.guestbook-pager {
display: inline-block;
width: 50%;
}
.guestbook-avatar {
float: left;
}
.guestbook-contents {
.well();
&.deleted {
.alert-warning();
2017-09-02 01:50:31 +00:00
}
}
.guestbook-reply {
&:before {
content: "Reply ";
font-weight: bold;
}
.reply-message {
.well();
.alert-info();
}
}
}
#character-friends {
.character-friend {
display: inline-block;
margin: 5px;
}
2017-09-02 01:50:31 +00:00
}