mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
21813059f2
2. Added updated instructions to the README 3. Removed unused media css directories 4. Improved use of color variables for page theming. 5. Improved Typography and blog styling. 6. Added support for simple pre and code styles 7. Misc styling and markup improvements.
34 lines
827 B
SCSS
34 lines
827 B
SCSS
#tweets {
|
|
.loading {
|
|
background: inline-image('bird_32_gray.png') no-repeat center .5em;
|
|
color: darken($sidebar-bg, 18);
|
|
text-shadow: $main-bg 0 1px;
|
|
text-align: center;
|
|
padding: 2.5em 0 .5em;
|
|
&.error {
|
|
background: inline-image('bird_32_gray_fail.png') no-repeat center .5em;
|
|
}
|
|
}
|
|
a { color: $sidebar-link-color-subdued; @include hover-link; }
|
|
p {
|
|
position: relative;
|
|
padding-right: 1em;
|
|
}
|
|
a[href*=status]{
|
|
color: $twitter-status-link;
|
|
float: right;
|
|
padding: 0 0 .1em 1em;
|
|
position: relative; right: -1.3em;
|
|
text-shadow: #fff 0 1px;
|
|
font-size: .7em;
|
|
span { font-size: 1.5em; }
|
|
&:hover {
|
|
color: $sidebar-link-color-subdued-hover;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
a[href*='twitter.com/search']{
|
|
@extend .aside-alt-link;
|
|
}
|
|
}
|