discourse/app/assets/stylesheets/desktop/onebox.scss

140 lines
2.5 KiB
SCSS
Raw Normal View History

2013-09-05 15:37:07 -04:00
@import "common/foundation/variables";
@import "common/foundation/mixins";
a.loading-onebox {
background: {
image: image-url("spinner_96.gif");
position: 0;
size: 20px;
height: 25px;
repeat: no-repeat;
};
padding-left: 25px;
}
2013-09-05 15:37:07 -04:00
.onebox-result {
2014-01-27 17:58:53 -05:00
margin-top: 15px;
2013-12-19 18:32:39 -05:00
padding: 12px 25px 12px 12px;
border-left: 5px solid $primary_light;
background: $primary_lightest;
2013-09-05 15:37:07 -04:00
font-size: 14px;
> .source {
margin-bottom: 12px;
2013-09-05 15:37:07 -04:00
margin-right: 10px;
display: block;
color: $primary;
2013-09-05 15:37:07 -04:00
position: relative;
height: 20px;
2013-09-05 15:37:07 -04:00
.info {
a {
color: black;
text-decoration: none;
padding-right: 10px;
2013-09-05 15:37:07 -04:00
}
position: absolute;
font-size: 14px;
img.favicon {
margin-right: 3px;
}
}
}
.onebox-result-body {
padding-top: 5px;
img {
2013-12-19 18:32:39 -05:00
max-height: 80%;
max-width: 25%;
height: auto;
2013-12-19 18:32:39 -05:00
float: left;
margin-right: 10px;
2013-09-05 15:37:07 -04:00
}
h3, h4 {
margin: 0px !important;
}
code {
max-height: 400px;
}
.metrics {
clear: both;
padding-bottom: 25px;
.metric {
display: inline-block;
padding-left: 33px;
float: left;
}
}
}
}
// RottenTomatoes Onebox
.onebox-result {
.onebox-result-body {
2013-12-19 18:32:39 -05:00
img.verdict {
float: none;
2013-09-05 15:37:07 -04:00
margin-right: 7px;
}
img.popcorn {
float: none;
margin-left: 20px;
margin-right: 5px;
}
}
}
2014-01-27 17:58:53 -05:00
@mixin onebox-favicon($class, $image) {
&.#{$class} .source {
background-image: image-url("favicons/#{$image}.png");
background-repeat: no-repeat;
padding-left: 20px;
}
}
aside.onebox {
margin-top: 15px;
padding: 12px 25px 12px 12px;
border-left: 5px solid $primary_light;
background: $primary_lightest;
2014-01-27 17:58:53 -05:00
font-size: 14px;
header {
a[href] {
color: $primary;
2014-01-27 17:58:53 -05:00
text-decoration: none;
}
}
@include onebox-favicon('stackexchange', 'stackexchange');
@include onebox-favicon('twitterstatus', 'twitter');
@include onebox-favicon('wikipedia', 'wikipedia');
@include onebox-favicon('githubblob', 'github');
2014-02-21 16:10:20 -05:00
@include onebox-favicon('amazon', 'amazon');
2014-01-27 17:58:53 -05:00
.onebox-body {
clear: both;
h3 {
font-size: 1.17em;
}
a[href] {
color: $tertiary_dark;
2014-01-27 17:58:53 -05:00
text-decoration: none;
}
a[href]:visited {
color: $tertiary_dark;
2014-01-27 17:58:53 -05:00
}
img {
max-height: 80%;
max-width: 25%;
height: auto;
float: left;
margin-right: 10px;
}
}
}