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
-webkit-backface-visibility: hidden; | |
-moz-backface-visibility: hidden; | |
-ms-backface-visibility: hidden; | |
backface-visibility: hidden; | |
-webkit-perspective: 1000; | |
-moz-perspective: 1000; | |
-ms-perspective: 1000; | |
perspective: 1000; | |
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
background: linear-gradient(90deg, #00aeef, #ed008c); | |
background-size: 400% 400%; | |
-webkit-animation: AnimationName 16s ease infinite; | |
-moz-animation: AnimationName 16s ease infinite; | |
-o-animation: AnimationName 16s ease infinite; | |
animation: AnimationName 16s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:0% 82%} | |
50%{background-position:100% 19%} | |
100%{background-position:0% 82%} |
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
<?php | |
$items = field_get_items('paragraphs_item', $variables['paragraphs_item'], 'field_para_background_color'); | |
$key = $items[0]['value']; | |
?> | |
<div id="full-width-container" class="<?php print $key; ?>"> | |
<div id="full-width-image" class=""> | |
<?php print render($content['field_image']); ?> | |
</div> | |
</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
$('.past-projects-card').hover( | |
function(){ $(this).addClass('project-details-hover'); }, | |
function(){ $(this).removeClass('project-details-hover'); } | |
); | |
$('.past-projects-card').hover( | |
function(){ $('.show-project-details', this).removeClass('hide'); }, | |
function(){ $('.show-project-details', this).addClass('hide'); } | |
); |
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
<a class="past-projects-card" href="/node/<?php print $fields['nid']->content ?>" style="background: url(<?php print $fields['field_exhibition_image']->content ?>) center center/cover;"> | |
<div class="show-project-details"> | |
<?php print $fields['title']->content ?> | |
<?php print $fields['field_artist_group']->content ?> | |
<?php print $fields['field_project_date']->content ?> | |
</div> | |
</a> |
OlderNewer