109 lines
1.9 KiB
SCSS
109 lines
1.9 KiB
SCSS
// global styles that apply to the Discourse application specifically
|
|
// BEWARE: changing these styles implies they take effect anywhere they are seen
|
|
// throughout the Discourse application
|
|
|
|
body {
|
|
background-color: $secondary;
|
|
}
|
|
|
|
body {
|
|
|
|
.boxed {
|
|
height: 100%;
|
|
@include border-radius-all(5px);
|
|
.contents {
|
|
padding: 10px 10px 10px 10px;
|
|
}
|
|
&.white {
|
|
background-color: $secondary;
|
|
}
|
|
}
|
|
#main {
|
|
.fa-star.starred {
|
|
color: $danger;
|
|
}
|
|
a.star {
|
|
display: inline-block;
|
|
font-size: 20px;
|
|
color: scale-color($primary, $lightness: 75%);
|
|
margin-right: 8px;
|
|
&:before {
|
|
font-family: "FontAwesome";
|
|
content: "\f005";
|
|
}
|
|
&.starred {
|
|
color: $danger;
|
|
@include hover {
|
|
opacity: 1;
|
|
&:before {
|
|
content: "\f005";
|
|
}
|
|
}
|
|
}
|
|
@include hover {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
&:active {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
img.avatar {
|
|
&.header {
|
|
width: 45px;
|
|
height: 45px;
|
|
}
|
|
&.medium {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
&.small {
|
|
width: 25px;
|
|
height: 25px;
|
|
}
|
|
&.tiny {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
.user-list {
|
|
.user {
|
|
padding-bottom: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
blockquote {
|
|
/* 13px left is intentional here to properly align with post quotes */
|
|
padding: 10px 8px 10px 13px;
|
|
p {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
p:last-of-type {
|
|
margin-bottom:0;
|
|
}
|
|
}
|
|
|
|
.topic-statuses {
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
vertical-align: middle;
|
|
.topic-status {
|
|
margin: 0;
|
|
display: inline-block;
|
|
i {
|
|
font-size: 20px;
|
|
color: darken($secondary, 60%);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Styles used before the user is logged into discourse. For example, activating their
|
|
// account or changing their email.
|
|
|
|
#simple-container {
|
|
width: 90%;
|
|
}
|