This file contains 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
@charset "UTF-8"; | |
/*-----------------------------------------------*\ | |
STYLE GUIDE | |
\*-----------------------------------------------*/ | |
/*-----------------------------------------------*\ | |
INUIT.CSS CONFIGURATION | |
AND IMPORT | |
\*-----------------------------------------------*/ | |
/*------------------------------------*\ | |
INUIT.CSS |
This file contains 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 (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
/* | |
A slightly more automated approach to BEM modifier classes: | |
using '&' parent selector interpolation, modifiers extend their bases, | |
so that HTML markup requires only the modifier class not the base *and* modifier | |
*/ |
This file contains 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 (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
// Based on BEM helper mixins by @lunelson (http://sassmeister.com/gist/7786284) | |
// Altered to use Sass and the EnvatoCSS syntax (http://webuild.envato.com/blog/how-to-scale-and-maintain-legacy-css-with-sass-and-smacss/) | |
=modifier($name) |
This file contains 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
/* | |
* Custom Thumbnails | |
*/ | |
function wpgrade_custom_thumbnails (){ | |
// Add theme support for Featured Images | |
add_theme_support( 'post-thumbnails' ); | |
add_image_size('slider-big', 1365, 780, true); |
This file contains 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 | |
$return_string = '<div class="pixcode-slider pixslider js-pixslider" ' . $navigation_style . ' data-slidertransition="' . $custom_slider_transition . '" data-sliderautoplay="true" data-sliderdelay="1500">'; | |
$return_string .= do_shortcode( $content ); | |
$return_string .= '</div>'; | |
echo $return_string; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#respond h3 { | |
/*Aici trebuie modificat in SCSS */ | |
margin-bottom: 36px; | |
} | |
/* Textarea */ | |
.highlander-dark #respond #comment-form-comment, .highlander-dark #comment-form-share-text-padder { | |
background: none; | |
box-shadow: none; | |
border: 1px solid #d7d7d7; | |
max-width: 100%; |
This file contains 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 | |
if (has_post_thumbnail()): | |
// $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'blog-big' ); | |
// | |
$featured_image_ID = get_post_thumbnail_id( $post->ID ); | |
$image = wp_get_attachment_image_src( $featured_image_ID, 'blog-big' ); | |
$image_medium = wp_get_attachment_image_src( $featured_image_ID, 'blog-medium' ); | |
// Get the image meta informations |
This file contains 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
/** | |
* Colors | |
*/ | |
/* Accent Color */ | |
blockquote a:hover, | |
.format-quote .edit-link a:hover, | |
.content-quote blockquote:before, | |
.widget a:hover, |
This file contains 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 | |
$settings['panels'] = array( | |
'exemplu-panou' => array( | |
'title' => 'Titlu Panou', | |
'sections' => array( | |
'exemplu-sectiune' => array( | |
'title' => 'Titlu Sectiune', | |
'options' => array( | |
'culoare_accent' => array( | |
'label' => 'Culoarea Accentuata', |
OlderNewer