Created
October 5, 2015 10:05
-
-
Save robertolos/b6cf63e8ca73f1cb73e3 to your computer and use it in GitHub Desktop.
Shopify dashing - Comments widget for twitter mentions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------------------------------------------------------- | |
// Sass declarations | |
// ---------------------------------------------------------------------------- | |
$background-color: #eb9c3c; | |
$title-color: rgba(255, 255, 255, 0.7); | |
$moreinfo-color: rgba(255, 255, 255, 0.7); | |
// ---------------------------------------------------------------------------- | |
// Widget-comment styles | |
// ---------------------------------------------------------------------------- | |
.widget-comments { | |
background-color: $background-color; | |
.title { | |
color: $title-color; | |
margin-bottom: 15px; | |
} | |
.name { | |
padding-left: 5px; | |
} | |
.comment-container { | |
display: none; | |
} | |
.more-info { | |
color: $moreinfo-color; | |
} | |
#media { | |
max-height:145px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment