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
// webpack is a module bundler | |
// This means webpack takes modules with dependencies | |
// and emits static assets representing those modules. | |
// dependencies can be written in CommonJs | |
var commonjs = require("./commonjs"); | |
// or in AMD | |
define(["amd-module", "../file"], function(amdModule, file) { | |
// while previous constructs are sync | |
// this is async |
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
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button { | |
font-size: 100%; | |
margin: 0px; | |
line-height: 1; | |
cursor: pointer; | |
position: relative; | |
font-family: inherit; | |
text-decoration: none; | |
overflow: visible; | |
padding: 0.618em 1em; |
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
.container.clearfix.et_menu_container { | |
height: 140px; | |
} | |
.et_fixed_nav #logo { | |
max-height: 150px; | |
} | |
.et-fixed-header #logo { | |
max-height: 45px; | |
} |
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
/* Widget Title Color | |
------------------------- */ | |
h4.widgettitle { | |
color: #AB1F24; | |
font-weight: bold; | |
} |
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 ( 'on' == et_get_option( 'divi_back_to_top', 'false' ) ) : ?> | |
<span class="et_pb_scroll_top et-pb-icon"></span> | |
<?php endif; | |
if ( ! is_page_template( 'page-template-blank.php' ) ) : ?> | |
<footer id="main-footer"> | |
<?php get_sidebar( 'footer' ); ?> |
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
.et_pb_slide { | |
padding: 0!important; | |
} | |
.et_pb_slide_description, .et_pb_slider_fullwidth_off .et_pb_slide_description { | |
margin-left: 0px!important; | |
text-align: right!important; | |
} |
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
/* H3 and H2 Text Centered Homepage | |
------------------------- */ | |
.page-id-10 h2 { | |
color: #AB1F24; | |
text-align: center; | |
} | |
.page-id-10 h3 { | |
color: #585858; | |
text-align: center; | |
} |
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
/* No Space Between Sections */ | |
.et_pb_section{ | |
padding-top: 0px !important; | |
} |
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
<ul class="et-social-icons"> | |
<?php if ( 'on' === et_get_option( 'divi_show_facebook_icon', 'on' ) ) : ?> | |
<li class="et-social-icon et-social-facebook"> | |
<a href="<?php echo esc_url( et_get_option( 'divi_facebook_url', '#' ) ); ?>" class="icon"> | |
<span><?php esc_html_e( 'Facebook', 'Divi' ); ?></span> | |
</a> | |
</li> | |
<?php endif; ?> | |
<?php if ( 'on' === et_get_option( 'divi_show_twitter_icon', 'on' ) ) : ?> |
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
/* No Gap Between Modules | |
------------------------- */ | |
.no-gap .et_pb_column_1_2 { | |
margin-right: 0; | |
width: 540px; | |
} | |
.no-gap .et_pb_column_1_3 { | |
margin-right: 0; | |
width: 360px; | |
} |
OlderNewer