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
| $orange: #e8b000; | |
| $noir: #000; | |
| a { | |
| background: $orange; | |
| &:hover { | |
| //Lighten colour by 20% | |
| background: lighten($orange, 20%); | |
| //Darken colour by 20% | |
| background: darken($orange, 20%); |
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
| To be included at the top of every page that has the gallery. | |
| <?php | |
| class gallery { | |
| public $imagePath = null; | |
| public $thumbsPath = null; | |
| function __construct( $imagePath, $thumbsPath, $rel, $alt) { |
NewerOlder