- Value Common weight name
- 100 Thin (Hairline)
- 200 Extra Light (Ultra Light)
- 300 Light
- 400 Normal
- 500 Medium
- 600 Semi Bold (Demi Bold)
- 700 Bold
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
| /* | |
| * .ajax-progress.ajax-progress-throbber | |
| * .ajax-progress.ajax-progress-throbber .message | |
| * .ajax-progress.ajax-progress-throbber .throbber | |
| */ | |
| /* | |
| * these apply to auto-completing form fields | |
| */ |
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
| <div class="call-action-button"> | |
| <?php if ($logged_in): ?> | |
| <div class="edit"> | |
| <a class="fa fa-cog" href="/admin/structure/block/manage/block/37/configure?destination=node/67"> Edit button</a> | |
| </div> | |
| <?php endif; ?> | |
| </div> |
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
| /* | |
| * http://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container | |
| */ | |
| /* Preferred option */ | |
| @mixin ellipsis() { | |
| overflow: hidden; | |
| white-space: nowrap; | |
| text-overflow: ellipsis; | |
| } |
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
| /* | |
| * Horizontal Length, Vertical Length, Blur Radius, Spread Radius | |
| * | |
| * Generator | |
| * http://www.cssmatic.com/box-shadow | |
| */ | |
| /* borders with inset box-shadow */ | |
| box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.5); /* top border */ |
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
| /* https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors */ | |
| /* Internal links, beginning with "#" */ | |
| a[href^="#"] { | |
| background-color: gold; | |
| } | |
| /* Links with "example" anywhere in the URL */ | |
| a[href*="example"] { | |
| background-color: silver; |
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
| /* | |
| * http://www.javascriptkit.com/dhtmltutors/sticky-hover-issue-solutions.shtml | |
| * Method 3- Using CSS Media Queries Level 4 Interaction Media Features | |
| */ | |
| @media (hover:none), | |
| (hover:on-demand) { | |
| nav a:hover { | |
| /* suppress hover effect on devices that don't support hover fully */ | |
| background: none; |
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
| https://getcomposer.org/download/ | |
| # install Composer from home directory | |
| $ cd ~ | |
| $ curl -sS https://getcomposer.org/installer | php | |
| $ mv composer.phar /usr/local/bin/composer | |
| # Update | |
| $ composer global self-update | |
| $ composer global update |
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
| /* Media queries breakpoints */ | |
| /* Less */ | |
| @screen-xs: 480px; | |
| @screen-xs-min: @screen-xs; | |
| @screen-sm: 768px; | |
| @screen-sm-min: @screen-sm; |
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
| ln -s /path/to/file file |