Skip to content
Snippets Groups Projects

Added highlight class to quicksilver

Merged Ghost User requested to merge github/fork/autumnfound/malowe/master/highlight into master
3 files
+ 39
8
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -142,17 +142,36 @@ blockquote{
@@ -142,17 +142,36 @@ blockquote{
// Example: eclipse.org/community/eclipse_newsletter/
// Example: eclipse.org/community/eclipse_newsletter/
.heading-underline {
.heading-underline {
position:relative;
position:relative;
font-size:2em;
font-size: @heading-underline-font-size;
text-transform: uppercase;
text-transform: uppercase;
font-weight:200;
font-weight: @heading-underline-weight;
margin:50px 0 20px;
margin: @heading-underline-margin;
&:after {
&:after {
border-bottom:4px solid #f7941d;
border-bottom: @heading-underline-border;
content:"";
content:"";
display:block;
display:block;
width:100px;
width:100px;
 
margin: 15px 0 0;
 
}
 
 
&.heading-underline-extended:after {
 
width: 300px;
 
max-width: 75%;
 
height: @heading-underline-thickness;
 
 
@media (min-width: 769px) {
 
width: 400px;
 
}
 
}
 
&.text-center:after {
margin:10px auto 0;
margin:10px auto 0;
}
}
 
&.text-left:after {
 
margin: 15px 0 0;
 
}
 
&.text-right:after {
 
margin: 15px 0 0 auto;
 
}
}
}
.fa-xl {
.fa-xl {
Loading